-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
24 lines (24 loc) · 1.02 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
{
"private": true,
"version": "1.5.6",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"prerelease:base": "npm run build",
"release": "npm run release:base && npm run release:vscode",
"release:base": "lerna publish --exact --force-publish --yes --sync-workspace-lock",
"release:vscode": "cd packages/vscode && npm run release",
"start": "node packages/cli/bin/tsslint.js",
"lint": "node packages/cli/bin/tsslint.js --project packages/*/tsconfig.json",
"lint:fix": "npm run lint -- --fix --vscode-settings .vscode/settings.json",
"lint:fixtures": "node packages/cli/bin/tsslint.js --project fixtures/*/tsconfig.json --vue-project fixtures/meta-frameworks-support/tsconfig.json --mdx-project fixtures/meta-frameworks-support/tsconfig.json --astro-project fixtures/meta-frameworks-support/tsconfig.json"
},
"devDependencies": {
"@lerna-lite/cli": "latest",
"@lerna-lite/publish": "latest",
"@tsslint/config": "1.5.6",
"@types/node": "latest",
"typescript": "latest"
}
}