-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (115 loc) · 3.16 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
110
111
112
113
114
115
116
{
"name": "cp-tools",
"displayName": "Competitive Programming Tools",
"description": "See https://github.com/plasmatic1/cp-tools for more info!",
"version": "2.1.0",
"publisher": "plasmatic",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "cp-tools.openInput",
"title": "Open CP Tools Test Data/Input Menu",
"category": "CP Tools"
},
{
"command": "cp-tools.openOptions",
"title": "Open CP Tools Options/Configuration Menu",
"category": "CP Tools"
},
{
"command": "cp-tools.resetDisplayHTML",
"title": "Reset display HTML for all displays (I/O, Output, Options) for debugging. (WIP/NONFUNCTIONAL)",
"category": "CP Tools Debug"
},
{
"command": "cp-tools.removeTempFiles",
"title": "Remove all created temporary files",
"category": "CP Tools"
},
{
"command": "cp-tools.buildAndRun",
"title": "Build and Run Current Open File",
"category": "CP Tools"
},
{
"command": "cp-tools.loadTemplates",
"title": "Load Templates",
"category": "CP Tools"
}
],
"keybindings": [
{
"command": "cp-tools.buildAndRun",
"key": "ctrl+alt+b"
},
{
"command": "cp-tools.openInput",
"key": "ctrl+alt+i"
},
{
"command": "cp-tools.openOptions",
"key": "ctrl+alt+o"
}
],
"languages": [{
"id": "log-output",
"mimetypes": [
"text/x-code-output"
],
"extensions": [
".log-output-test"
]
}],
"grammars": [{
"language": "log-output",
"scopeName": "log.output",
"path": "syntaxes/log-output.tmLanguage"
}]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"parcel:build": "parcel build -d out/assets src/assets/entrypoint/input.html src/assets/entrypoint/output.html src/assets/entrypoint/options.html --public-url \"vscodeRoot\" --no-cache",
"parcel:watch": "parcel watch -d out/assets src/assets/entrypoint/input.html src/assets/entrypoint/output.html src/assets/entrypoint/options.html --public-url \"vscodeRoot\" --no-hmr",
"parcel:reactTest": "parcel -d testReact src/assets/entrypoint/input.html src/assets/entrypoint/output.html src/assets/entrypoint/options.html",
"copyFiles": "node os-specific-copy.js",
"compile": "tsc -p ./ && npm run copyFiles && npm run parcel:build",
"watch": "tsc -watch -p ./ && npm run parcel:watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.3",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/pidusage": "^2.0.1",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.1",
"babel-preset-react": "^6.24.1",
"lodash": "^4.17.15",
"parcel-bundler": "^1.12.4",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-error-boundary": "^1.2.5",
"sass": "^1.24.4",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"pidusage": "^2.0.17"
}
}