-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "eslint-ast-explorer",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@9.15.1",
"description": "ESLint AST Explorer.",
"keywords": [],
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"lint": "eslint .",
"postinstall": "nuxt prepare",
"prepare": "husky",
"preview": "nuxt preview",
"release": "bumpp",
"typecheck": "nuxt typecheck"
},
"dependencies": {
"@babel/eslint-parser": "^7.25.9",
"@shikijs/monaco": "^1.24.4",
"@types/esprima": "^4.0.6",
"@typescript-eslint/parser": "^8.18.2",
"@unocss/reset": "^0.65.2",
"ansi-regex": "^6.1.0",
"astro-eslint-parser": "^1.1.0",
"dayjs": "^1.11.13",
"eslint-mdx": "^3.1.5",
"esprima": "^4.0.1",
"floating-vue": "^5.2.2",
"json-to-ast": "^2.1.0",
"jsonc-eslint-parser": "^2.4.0",
"shiki": "^1.24.4",
"svelte-eslint-parser": "^0.43.0",
"toml-eslint-parser": "^0.10.0",
"vue-eslint-parser": "^9.4.3",
"yaml-eslint-parser": "^1.2.3"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.5",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/ri": "^1.2.5",
"@iconify-json/uil": "^1.2.3",
"@iconify-json/vscode-icons": "^1.2.6",
"@ntnyq/eslint-config": "^3.10.2",
"@ntnyq/prettier-config": "^1.22.0",
"@nuxt/devtools": "latest",
"@types/node": "^22.10.2",
"@unocss/nuxt": "^0.65.2",
"@vueuse/nuxt": "^12.2.0",
"bumpp": "^9.9.2",
"consola": "^3.3.1",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"npm-run-all2": "^7.0.2",
"nuxt": "^3.14.1592",
"nuxt-monaco-editor": "^1.3.1",
"nuxt-umami": "^3.1.1",
"pathe": "^1.1.2",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vue-tsc": "^2.2.0"
},
"nano-staged": {
"*.{js,ts,mjs,cjs,vue,md,yml,yaml,json}": "eslint --fix"
}
}