-
-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 736 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 736 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
29
{
"name": "typescript-svelte-plugin",
"version": "0.3.0",
"description": "A TypeScript Plugin providing Svelte intellisense",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc -p ./",
"watch": "tsc -w -p ./",
"test": "echo 'NOOP'",
"prepublishOnly": "npm run build"
},
"keywords": [
"svelte",
"typescript",
"javascript",
"plugin"
],
"author": "The Svelte Community",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"typescript": "^5.5.2",
"svelte": "^4.2.19"
},
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.5.0",
"svelte2tsx": "workspace:~"
}
}