-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.23 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
{
"name": "@lvce-editor/iframe-worker-monorepo",
"version": "0.0.0-dev",
"description": "",
"main": "",
"type": "module",
"scripts": {
"postinstall": "lerna bootstrap --ci",
"lint": "eslint .",
"test": "lerna run test",
"test-integration": "lerna run test-integration",
"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/iframe-worker/src/iframeWorkerMain.ts --outfile=.tmp/dist/dist/iframeWorkerMain.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",
"format": "prettier --write ."
},
"keywords": [],
"author": "Lvce Editor",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@lerna/legacy-package-management": "^8.1.9",
"@lvce-editor/eslint-config": "^1.6.0",
"eslint": "^9.18.0",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 150
}
}