-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "vs-codesandboxer",
"version": "1.0.0",
"description": "Upload to CodeSandbox from a single entry file",
"repository": {
"type": "git",
"url": "https://github.com/codesandbox/codesandboxer",
"directory": "packages/vs-codesandboxer"
},
"main": "./extension",
"scripts": {
"build": "echo done",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"codesandboxer-fs": "^1.0.0",
"pkg-dir": "^2.0.0",
"pkg-up": "^2.0.0"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"eslint": "^4.19.1",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"engines": {
"vscode": "^1.23.0"
},
"activationEvents": [
"onCommand:extension.vs-codesandboxer"
],
"contributes": {
"commands": [
{
"command": "extension.vs-codesandboxer",
"title": "Deploy to CodeSandbox"
}
],
"menus": {
"editor/context": [
{
"when": "resourceLangId == javascript",
"command": "extension.vs-codesandboxer"
},
{
"when": "resourceLangId == vue",
"command": "extension.vs-codesandboxer"
},
{
"when": "resourceLangId == typescriptreact",
"command": "extension.vs-codesandboxer"
},
{
"when": "resourceLangId == javascriptreact",
"command": "extension.vs-codesandboxer"
}
]
}
},
"displayName": "vs-codesandboxer",
"publisher": "noviny"
}