forked from sxzz/ast-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.65 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.65 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "ast-explorer",
"version": "0.30.2",
"private": true,
"packageManager": "pnpm@10.13.1",
"type": "module",
"license": "AGPL-3.0",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"typecheck": "nuxi typecheck",
"lint": "eslint --cache",
"build-parser": "tsx --experimental-vm-modules scripts/build-parser-test.ts",
"release": "bumpp && tsx scripts/release.ts",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@angular/compiler": "^20.1.2",
"@shikijs/monaco": "^3.8.1",
"@typescript-eslint/parser": "^8.37.0",
"@vueuse/core": "^13.5.0",
"ansi-regex": "^6.1.0",
"fflate": "^0.8.2",
"json-to-ast": "^2.1.0",
"json5": "^2.2.3",
"monaco-editor": "^0.52.2",
"shiki": "^3.8.1",
"vue": "^3.5.17"
},
"devDependencies": {
"@astrojs/compiler": "^2.12.2",
"@babel/parser": "^7.28.0",
"@html-eslint/parser": "^0.43.0",
"@humanwhocodes/momoa": "^3.3.8",
"@iconify-json/ri": "^1.2.5",
"@iconify-json/vscode-icons": "^1.2.23",
"@nuxt/kit": "^4.0.0",
"@nuxtjs/plausible": "1.2.0",
"@solidity-parser/parser": "^0.20.1",
"@swc/wasm-web": "^1.13.1",
"@sxzz/eslint-config": "^7.0.6",
"@sxzz/prettier-config": "^2.2.3",
"@types/css-tree": "^2.3.10",
"@types/espree": "^10.1.0",
"@types/json-to-ast": "^2.1.4",
"@unocss/eslint-plugin": "^66.3.3",
"@unocss/nuxt": "^66.3.3",
"@vue-vapor/compiler-vapor": "latest",
"@vue/compiler-dom": "^3.5.17",
"@vue/compiler-sfc": "^3.5.17",
"@vueuse/nuxt": "^13.5.0",
"acorn": "^8.15.0",
"acorn-loose": "^8.5.2",
"bumpp": "^10.2.0",
"consola": "^3.4.2",
"esbuild": "^0.25.8",
"eslint": "^9.31.0",
"esprima-next": "^6.0.3",
"floating-vue": "^5.2.2",
"flow-parser": "^0.276.0",
"htmlparser2": "^10.0.0",
"jinx-rust": "^0.1.6",
"jsonc-eslint-parser": "^2.4.0",
"lightningcss-wasm": "^1.30.1",
"meriyah": "^6.1.4",
"nuxt": "^4.0.0",
"nuxt-monaco-editor": "^1.3.2",
"oxc-parser": "^0.77.3",
"php-parser": "^3.2.5",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"rehype": "^13.0.2",
"remark": "^15.0.1",
"rolldown": "^1.0.0-beta.28",
"serve": "^14.2.4",
"simple-git": "^3.28.0",
"sql-parser-cst": "^0.33.1",
"svelte": "^5.36.12",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"unenv": "^2.0.0-rc.18",
"unocss": "^66.3.3",
"unplugin-replace": "^0.6.0",
"vue-tsc": "^3.0.3",
"yaml": "^2.8.0",
"yaml-eslint-parser": "^1.3.0"
},
"engines": {
"node": ">=20.18.0"
},
"prettier": "@sxzz/prettier-config"
}