-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.95 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "rollup-plugin-ast-explorer",
"type": "module",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "Inspect Rollup's AST of each module",
"author": {
"name": "younggglcy",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/younggglcy/rollup-plugin-ast-explorer/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/younggglcy/rollup-plugin-ast-explorer.git"
},
"bugs": {
"url": "https://github.com/younggglcy/rollup-plugin-ast-explorer/issues"
},
"keywords": [
"rollup-plugin",
"rollup ast",
"ast explorer"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"!dist/**/*.map",
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"dev": "rimraf dist && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript -w",
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"lint": "eslint . --max-warnings 0",
"lint:fix": "pnpm lint --fix"
},
"peerDependencies": {
"rollup": "^4.0.0"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
}
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"debug": "^4.3.6",
"detect-port": "^1.6.1",
"h3": "^1.12.0",
"jotai": "^2.9.1",
"picocolors": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.24.1",
"@eslint-react/eslint-plugin": "^1.8.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"@types/debug": "^4.1.12",
"@types/detect-port": "^1.3.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.14",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.8.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.40",
"rimraf": "^6.0.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4"
},
"pnpm": {
"overrides": {
"rollup-plugin-ast-explorer": "workspace:*"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": "eslint --cache --fix"
}
}