forked from sveltejs/language-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 683 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 683 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
{
"name": "@svelte/language-tools",
"version": "1.0.0",
"author": "Svelte Contributors",
"license": "MIT",
"private": true,
"scripts": {
"bootstrap": "cd ./packages/svelte2tsx && pnpm build && cd ../svelte-vscode && pnpm build:grammar",
"build": "tsc -b",
"test": "cross-env CI=true pnpm test -r",
"watch": "tsc -b -watch",
"format": "prettier --write .",
"lint": "prettier --check ."
},
"dependencies": {
"typescript": "^5.6.3"
},
"devDependencies": {
"cross-env": "^7.0.2",
"prettier": "~3.3.3",
"ts-node": "^10.0.0"
},
"packageManager": "[email protected]"
}