-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
37
38
39
40
41
42
43
44
45
46
{
"name": "@lvce-editor/about-view-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 --watch packages/about-view/src/aboutWorkerMain.ts --outfile=.tmp/dist/dist/aboutWorkerMain.js",
"build": "node packages/build/src/build.js",
"build:static": "node packages/build/src/build-static.js",
"dev": "node packages/build/src/dev.js",
"measure": "cd packages/memory && npm run measure"
},
"keywords": [
"about"
],
"author": "Lvce Editor",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@lerna/legacy-package-management": "^8.1.9",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.17.0",
"eslint-plugin-perfectionist": "^4.4.0",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 150
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts,js",
"exec": "node scripts/build.js"
}
}