-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"name": "@cursorless/cursorless-vscode-e2e",
"version": "0.1.0",
"description": "Our VSCode end-to-end tests",
"private": true,
"main": "./out/index.js",
"exports": {
".": {
"cursorless:bundler": "./src/index.ts",
"default": "./out/index.js"
}
},
"scripts": {
"compile": "tsc --build",
"watch": "tsc --build --watch",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@cursorless/common": "workspace:*",
"@cursorless/node-common": "workspace:*",
"@cursorless/vscode-common": "workspace:*",
"immer": "10.1.1",
"lodash-es": "4.17.21"
},
"devDependencies": {
"@types/chai": "5.2.2",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"@types/mocha": "10.0.10",
"@types/sinon": "17.0.4",
"@types/vscode": "1.82.0",
"chai": "5.2.0",
"js-yaml": "4.1.0",
"mocha": "11.5.0",
"sinon": "20.0.0"
},
"types": "./out/index.d.ts",
"type": "module"
}