|
1 | 1 | { |
2 | | -"name":"coderoad-vscode", |
3 | | -"displayName":"CodeRoad", |
4 | | -"description":"Interactive tutorials in your editor", |
5 | | -"version":"0.0.1", |
6 | | -"engines": { |
7 | | -"vscode":"^1.34.0" |
8 | | -}, |
9 | | -"categories": [ |
10 | | -"Other" |
11 | | -], |
12 | | -"publisher":"Shawn McKay", |
13 | | -"author": { |
14 | | -"name":"Shawn McKay <shawn.j.mckay@gmail.com>" |
15 | | -}, |
16 | | -"bugs": { |
17 | | -"url":"https://github.com/shmck/coderoad-vscode/issues", |
18 | | -"email":"shawn.j.mckay@gmail.com" |
19 | | -}, |
20 | | -"repository": { |
21 | | -"type":"git", |
22 | | -"url":"https://github.com/shmck/coderoad-vscode.git" |
23 | | -}, |
24 | | -"homepage":"https://github.com/shmck/coderoad-vscode/README.md", |
25 | | -"galleryBanner": { |
26 | | -"color":"#C80000", |
27 | | -"theme":"dark" |
28 | | -}, |
29 | | -"activationEvents": [ |
30 | | -"onCommand:coderoad.start" |
31 | | -], |
32 | | -"main":"./build/extension.js", |
33 | | -"contributes": { |
34 | | -"commands": [ |
35 | | -{ |
36 | | -"command":"coderoad.start", |
37 | | -"title":"Start", |
38 | | -"category":"CodeRoad" |
39 | | -}, |
40 | | -{ |
41 | | -"command":"coderoad.set_layout", |
42 | | -"title":"Set Layout", |
43 | | -"category":"CodeRoad" |
44 | | -} |
45 | | -] |
46 | | -}, |
47 | | -"scripts": { |
48 | | -"vscode:prepublish":"npm run build", |
49 | | -"machine":"node ./out/state/index.js", |
50 | | -"build":"rm -rf build && concurrently\"npm run build:ext\"\"npm run build:web\"", |
51 | | -"build:ext":"npm run compile", |
52 | | -"build:web":"cd web-app && npm run build", |
53 | | -"compile":"tsc -p ./", |
54 | | -"watch":"tsc -watch -p ./", |
55 | | -"postinstall":"node ./node_modules/vscode/bin/install", |
56 | | -"storybook":"cd web-app && npm run storybook", |
57 | | -"test":"npm run build && node ./node_modules/vscode/bin/test" |
58 | | -}, |
59 | | -"devDependencies": { |
60 | | -"@types/mocha":"^5.2.7", |
61 | | -"@types/node":"^12.6.2", |
62 | | -"concurrently":"^4.1.1", |
63 | | -"prettier":"^1.18.2", |
64 | | -"tslint":"^5.18.0", |
65 | | -"tslint-config-prettier":"^1.18.0", |
66 | | -"typescript":"^3.5.3" |
67 | | -}, |
68 | | -"dependencies": { |
69 | | -"vscode":"^1.1.35", |
70 | | -"xstate":"^4.6.7" |
71 | | -}, |
72 | | -"license":"SEE LICENSE IN LICENSE.md" |
| 2 | +"name":"coderoad-vscode", |
| 3 | +"displayName":"CodeRoad", |
| 4 | +"description":"Interactive tutorials in your editor", |
| 5 | +"version":"0.0.1", |
| 6 | +"engines": { |
| 7 | +"vscode":"^1.34.0" |
| 8 | +}, |
| 9 | +"categories": [ |
| 10 | +"Other" |
| 11 | +], |
| 12 | +"publisher":"Shawn McKay", |
| 13 | +"author": { |
| 14 | +"name":"Shawn McKay <shawn.j.mckay@gmail.com>" |
| 15 | +}, |
| 16 | +"bugs": { |
| 17 | +"url":"https://github.com/shmck/coderoad-vscode/issues", |
| 18 | +"email":"shawn.j.mckay@gmail.com" |
| 19 | +}, |
| 20 | +"repository": { |
| 21 | +"type":"git", |
| 22 | +"url":"https://github.com/shmck/coderoad-vscode.git" |
| 23 | +}, |
| 24 | +"homepage":"https://github.com/shmck/coderoad-vscode/README.md", |
| 25 | +"galleryBanner": { |
| 26 | +"color":"#C80000", |
| 27 | +"theme":"dark" |
| 28 | +}, |
| 29 | +"activationEvents": [ |
| 30 | +"onCommand:coderoad.start" |
| 31 | +], |
| 32 | +"main":"./build/extension.js", |
| 33 | +"contributes": { |
| 34 | +"commands": [ |
| 35 | +{ |
| 36 | +"command":"coderoad.start", |
| 37 | +"title":"Start", |
| 38 | +"category":"CodeRoad" |
| 39 | +}, |
| 40 | +{ |
| 41 | +"command":"coderoad.set_layout", |
| 42 | +"title":"Set Layout", |
| 43 | +"category":"CodeRoad" |
| 44 | +} |
| 45 | +] |
| 46 | +}, |
| 47 | +"scripts": { |
| 48 | +"vscode:prepublish":"npm run build", |
| 49 | +"machine":"node ./out/state/index.js", |
| 50 | +"build":"rm -rf build && concurrently\"npm run build:ext\"\"npm run build:web\"", |
| 51 | +"build:ext":"npm run compile", |
| 52 | +"build:web":"cd web-app && npm run build", |
| 53 | +"compile":"tsc -p ./", |
| 54 | +"watch":"tsc -watch -p ./", |
| 55 | +"postinstall":"node ./node_modules/vscode/bin/install", |
| 56 | +"storybook":"cd web-app && npm run storybook", |
| 57 | +"test":"npm run build && node ./node_modules/vscode/bin/test" |
| 58 | +}, |
| 59 | +"devDependencies": { |
| 60 | +"@types/mocha":"^5.2.7", |
| 61 | +"@types/node":"^12.6.2", |
| 62 | +"concurrently":"^4.1.1", |
| 63 | +"prettier":"^1.18.2", |
| 64 | +"tslint":"^5.18.0", |
| 65 | +"tslint-config-prettier":"^1.18.0", |
| 66 | +"typescript":"^3.5.3" |
| 67 | +}, |
| 68 | +"dependencies": { |
| 69 | +"vscode":"^1.1.35", |
| 70 | +"xstate":"^4.6.7" |
| 71 | +}, |
| 72 | +"license":"SEE LICENSE IN LICENSE.md" |
73 | 73 | } |