-
-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 904 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 904 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
{
"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 .",
"changeset:version": "changeset version && git add --all",
"changeset:publish": "changeset publish"
},
"dependencies": {
"typescript": "^5.9.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"cross-env": "^7.0.2",
"prettier": "~3.3.3",
"ts-node": "^10.0.0"
},
"packageManager": "pnpm@9.3.0"
}