-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "calvacljstestbed",
"displayName": "CalvaCLJSTestbed",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"activationEvents": [
"calvacljstestbed.helloWorld"
],
"main": "./lib/main.js",
"contributes": {
"commands": [
{
"command": "calvacljstestbed.helloWorld",
"title": "Hello World"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile-cljs": "npx shadow-cljs compile :calva-lib",
"watch-ts": "npx tsc --watch --project ./tsconfig.json",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"clean": "rimraf ./out && rimraf ./tsconfig.tsbuildinfo && rimraf ./cljs-out && rimraf ./lib"
},
"devDependencies": {
"@types/vscode": "^1.67.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^9.1.0",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.8.0",
"glob": "^7.1.6",
"mocha": "^9.2.2",
"typescript": "^4.6.3",
"@vscode/test-electron": "^2.2.2",
"rimraf": "^2.7.1",
"shadow-cljs": "^2.19.2"
}
}