-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "@cursorless/node-common",
"version": "1.0.0",
"description": "Package containing node utilities",
"main": "./out/index.js",
"scripts": {
"compile:tsc": "tsc --build",
"compile:esbuild": "esbuild ./src/index.ts --sourcemap --format=esm --bundle --packages=external --outfile=./out/index.js",
"compile": "pnpm compile:tsc && pnpm compile:esbuild",
"watch:tsc": "pnpm compile:tsc --watch",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch": "pnpm run --filter @cursorless/node-common --parallel '/^watch:.*/'",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"types": "./out/index.d.ts",
"exports": {
".": {
"cursorless:bundler": "./src/index.ts",
"default": "./out/index.js"
}
},
"dependencies": {
"@cursorless/common": "workspace:*",
"glob": "11.0.2",
"lodash-es": "4.17.21"
},
"devDependencies": {
"@types/chai": "5.2.2",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"chai": "5.2.0",
"js-yaml": "4.1.0"
}
}