-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.11 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@svecosystem/strip-types",
"description": "A type stripper for Svelte.",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Aidan Bleser",
"url": "https://github.com/ieedan"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svecosystem/strip-types.git"
},
"bugs": {
"url": "https://github.com/svecosystem/strip-types/issues"
},
"keywords": ["svelte", "strip", "types", "typescript", "javascript"],
"packageManager": "pnpm@10.4.1",
"type": "module",
"scripts": {
"build": "unbuild",
"lint": "biome lint --write",
"format": "biome format --write",
"check": "biome check",
"test": "vitest",
"changeset": "changeset",
"ci:release": "unbuild && changeset publish"
},
"files": ["dist"],
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.8",
"@types/node": "^22.13.10",
"unbuild": "^3.5.0",
"vitest": "^3.0.9"
},
"dependencies": {
"estree-walker": "^3.0.3",
"magic-string": "^0.30.17",
"pathe": "^2.0.3",
"svelte": "^5.23.2"
}
}