-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 839 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 839 Bytes
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
{
"private": true,
"packageManager": "pnpm@9.4.0",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"watch:labs": "cd extensions/labs && npm run watch",
"prerelease": "npm run build && npm run test",
"release": "lerna publish --exact --force-publish --yes --sync-workspace-lock",
"release:next": "npm run release -- --dist-tag next --no-push",
"test": "vitest run",
"format": "dprint fmt",
"lint": "tsslint --project */*/tsconfig.json",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@lerna-lite/cli": "latest",
"@lerna-lite/publish": "latest",
"@tsslint/cli": "latest",
"@tsslint/config": "latest",
"@tsslint/compat-eslint": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"dprint": "latest",
"typescript": "latest",
"vitest": "latest"
}
}