-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
109 lines (109 loc) Β· 2.99 KB
/
package.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "coderoad",
"version": "0.19.4",
"description": "Play interactive coding tutorials in your editor",
"keywords": [
"tutorial",
"learn",
"education",
"teach",
"training"
],
"homepage": "https://github.com/coderoad/coderoad-vscode",
"bugs": {
"url": "https://github.com/coderoad/coderoad-vscode/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/coderoad/coderoad-vscode.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "Shawn McKay <[email protected]>"
},
"main": "./build/extension.js",
"scripts": {
"build": "./scripts/build.sh",
"postinstall": "node ./node_modules/vscode/bin/install",
"install-all": "yarn --ignore-engines && yarn --cwd web-app",
"lint": "eslint web-app/src/**/*.ts src/**/*.ts",
"package": "./scripts/package.sh",
"storybook": "yarn --cwd web-app storybook",
"test": "jest",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=build/extension.js --external:vscode --external:fsevents --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -watch -p ./"
},
"dependencies": {
"chokidar": "3.5.3",
"git-url-parse": "11.6.0",
"node-fetch": "2.6.7",
"semver": "7.3.5",
"vscode-extension-telemetry": "0.1.7"
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/events": "3.0.0",
"@types/jest": "27.0.3",
"@types/jsdom": "^16.2.13",
"@types/node": "16.11.9",
"@types/node-fetch": "2.5.12",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"esbuild": "0.14.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "2.5.0",
"jest": "27.3.1",
"ts-jest": "27.0.7",
"typescript": "4.4.4",
"vscode": "^1.1.37",
"vscode-test": "^1.6.1"
},
"engines": {
"vscode": "^1.39.2"
},
"activationEvents": [
"onCommand:coderoad.start",
"workspaceContains:*/codeally.json",
"workspaceContains:*/codeAlly.json",
"workspaceContains:*/.freeCodeCamp"
],
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "coderoad.start",
"title": "Start",
"category": "CodeRoad"
}
],
"keybindings": [
{
"key": "ctrl+enter",
"mac": "ctrl+enter",
"command": "coderoad.enter"
}
]
},
"displayName": "CodeRoad",
"galleryBanner": {
"color": "#272728",
"theme": "dark"
},
"preview": true,
"publisher": "CodeRoad",
"icon": "coderoad_icon.png"
}