-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.18 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.18 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
{
"name": "@lvce-editor/diff-view-monorepo",
"version": "0.0.0-dev",
"license": "MIT",
"author": "Lvce Editor",
"type": "module",
"scripts": {
"build": "node packages/build/src/build.ts",
"build:static": "node packages/build/src/build-static.ts",
"build:watch": "./packages/build/node_modules/.bin/esbuild --format=esm --bundle --external:node:buffer --external:electron --external:ws --external:node:worker_threads --watch packages/diff-view/src/diffViewWorkerMain.ts --outfile=.tmp/dist/dist/diffViewWorkerMain.js",
"create:e2e-tests": "node packages/build/src/createE2ETests.ts",
"dev": "node packages/build/src/dev.ts",
"format": "prettier --write .",
"postinstall": "lerna bootstrap --ci",
"lint": "eslint . && prettier --check .",
"test": "lerna run test",
"test-integration": "lerna run test-integration",
"type-check": "tsc -b"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 170
},
"devDependencies": {
"@lerna/legacy-package-management": "^8.2.4",
"@lvce-editor/eslint-config": "^8.3.0",
"eslint": "10.2.1",
"lerna": "^8.2.3",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
}
}