-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "@lvce-editor/main-process",
"version": "0.0.0-dev",
"repository": {
"type": "git",
"url": "https://github.com/lvce-editor/main-process.git"
},
"license": "MIT",
"type": "module",
"main": "src/mainProcessMain.ts",
"scripts": {
"build": "node packages/build/src/build.js",
"build:watch": "./packages/build/node_modules/.bin/esbuild --format=esm --bundle --external:node:buffer --external:electron --external:ws --external:node:* --watch packages/main-process/src/mainProcessMain.ts --outfile=.tmp/dist/dist/mainProcessMain.js",
"format": "prettier --write .",
"postinstall": "lerna bootstrap --ci",
"lint": "eslint .",
"test": "lerna run test",
"type-check": "tsc -b"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 150
},
"devDependencies": {
"@lerna/legacy-package-management": "^8.2.4",
"@lvce-editor/eslint-config": "^8.1.0",
"eslint": "^10.2.0",
"lerna": "^8.2.4",
"prettier": "^3.8.1",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=24"
}
}