-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 KB
/
package.json
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
{
"name": "esrap",
"version": "1.4.5",
"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"
}
},
"types": "./types/index.d.ts",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@typescript-eslint/types": "^8.2.0",
"@vitest/ui": "^2.1.1",
"acorn": "^8.11.3",
"acorn-typescript": "^1.4.13",
"dts-buddy": "^0.5.4",
"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",
"check": "tsc",
"prepublishOnly": "pnpm test && dts-buddy -m esrap:./src/public.d.ts",
"sandbox": "node test/sandbox/index.js",
"test": "vitest --run",
"test:ui": "vitest --ui"
},
"license": "MIT",
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.4.15"
},
"packageManager": "pnpm@9.8.0",
"publishConfig": {
"access": "public"
}
}