-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "esrap",
"version": "2.2.9",
"description": "Parse in reverse",
"repository": {
"type": "git",
"url": "git+https://github.com/sveltejs/esrap.git"
},
"type": "module",
"files": [
"src",
"types"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./languages/ts": {
"types": "./types/index.d.ts",
"default": "./src/languages/ts/index.js"
},
"./languages/tsx": {
"types": "./types/index.d.ts",
"default": "./src/languages/tsx/index.js"
}
},
"types": "./types/index.d.ts",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@sveltejs/acorn-typescript": "^1.0.5",
"@types/estree": "^1.0.8",
"@typescript-eslint/types": "^8.2.0",
"@vitest/ui": "^2.1.1",
"acorn": "^8.15.0",
"dts-buddy": "^0.6.2",
"oxc-parser": "^0.95.0",
"prettier": "^3.0.3",
"typescript": "^5.7.2",
"vitest": "^2.1.1",
"zimmerframe": "^1.0.0"
},
"scripts": {
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"gen": "dts-buddy -m esrap:./src/public.d.ts -m esrap/languages/ts:./src/languages/ts/public.d.ts -m esrap/languages/tsx:./src/languages/tsx/public.d.ts",
"check": "pnpm gen && tsc",
"prepublishOnly": "pnpm test && pnpm gen",
"sandbox": "node test/sandbox/index.js",
"test": "vitest --run",
"test:ui": "vitest --ui",
"format": "pnpm lint --write",
"lint": "prettier --check . --ignore-path .gitignore --ignore-path .prettierignore"
},
"license": "MIT",
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.4.15"
},
"peerDependencies": {
"@typescript-eslint/types": "^8.2.0"
},
"peerDependenciesMeta": {
"@typescript-eslint/types": {
"optional": true
}
},
"packageManager": "pnpm@10.33.4+sha512.1c67b3b359b2d408119ba1ed289f34b8fc3c6873412bec6fd264fbdc82489e510fcbecb9ce9d22dae7f3b76269d8441046014bdca53b9979cd7a561ad631b800",
"publishConfig": {
"access": "public"
}
}