-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 977 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 977 Bytes
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
{
"name": "inlinemark-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build:webview && npm run build:extension",
"build:extension": "npm run build -w packages/extension",
"build:webview": "npm run build -w packages/webview",
"watch": "npm run watch:webview & npm run watch:extension",
"watch:extension": "npm run watch -w packages/extension",
"watch:webview": "npm run watch -w packages/webview",
"lint": "npm run lint -w packages/extension && npm run lint -w packages/webview",
"test": "env -u ELECTRON_RUN_AS_NODE npm run test -w packages/extension",
"package": "npm run build && NODE_OPTIONS=\"--require $PWD/scripts/patch-os-cpus.cjs\" sh -c 'cd packages/extension && vsce package --no-dependencies'"
},
"devDependencies": {
"typescript": "^5.9.3"
},
"optionalDependencies": {
"@esbuild/darwin-arm64": "^0.27.2",
"@rollup/rollup-darwin-arm64": "^4.55.1"
}
}