-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.17 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
{
"name": "@lvce-editor/editor-worker-monorepo",
"version": "0.0.0-dev",
"description": "",
"main": "",
"type": "module",
"scripts": {
"postinstall": "lerna bootstrap --ci",
"lint": "eslint .",
"test": "lerna run test",
"type-check": "tsc -b",
"build:watch": "./packages/build/node_modules/.bin/esbuild --format=esm --bundle --external:node:buffer --external:electron --external:ws --external:node:worker_threads --watch packages/editor-worker/src/editorWorkerMain.ts --outfile=.tmp/dist/dist/editorWorkerMain.js",
"build": "node packages/build/src/build.js",
"build:static": "node packages/build/src/build-static.js",
"dev": "node packages/build/src/dev.js"
},
"keywords": [],
"author": "Lvce Editor",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@lerna/legacy-package-management": "^8.1.9",
"@lvce-editor/eslint-config": "^1.24.0",
"eslint": "^9.20.1",
"eslint-plugin-perfectionist": "^4.9.0",
"lerna": "^8.1.9",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 150
}
}