-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.56 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "ast-walker-scope",
"version": "0.6.2",
"packageManager": "pnpm@9.11.0",
"description": "Traverse Babel AST with scope information.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/sxzz/ast-walker-scope#readme",
"bugs": {
"url": "https://github.com/sxzz/ast-walker-scope/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sxzz/ast-walker-scope.git"
},
"author": "三咲智子 <sxzz@sxzz.moe>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./*": "./*"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@babel/parser": "^7.25.6",
"ast-kit": "^1.2.1"
},
"devDependencies": {
"@babel/types": "^7.25.6",
"@sxzz/eslint-config": "^4.2.0",
"@sxzz/prettier-config": "^2.0.2",
"@types/node": "^22.7.2",
"bumpp": "^9.5.2",
"eslint": "^9.11.1",
"fast-glob": "^3.3.2",
"magic-string": "^0.30.11",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=16.14.0"
},
"prettier": "@sxzz/prettier-config"
}