-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 782 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 782 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
30
31
32
33
34
35
36
37
{
"name": "zimmerframe",
"description": "A tool for walking ASTs",
"version": "1.1.4",
"repository": {
"type": "git",
"url": "https://github.com/sveltejs/zimmerframe"
},
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/walk.js"
}
},
"types": "./types/index.d.ts",
"files": [
"src",
"types"
],
"devDependencies": {
"@changesets/cli": "^2.29.7",
"dts-buddy": "^0.6.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"scripts": {
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"prepublishOnly": "dts-buddy -m zimmerframe:src/index.d.ts",
"check": "tsc",
"test": "vitest --run",
"test:watch": "vitest"
},
"license": "MIT",
"packageManager": "pnpm@10.15.1"
}