-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
73 lines (73 loc) · 2.1 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
{
"name": "undocs",
"version": "0.2.30",
"repository": "unjs/undocs",
"license": "MIT",
"type": "module",
"bin": {
"undocs": "./cli/main.mjs"
},
"files": [
"app",
"cli",
"schema",
"!app/**/node_modules",
"!app/**/tsconfig.json"
],
"scripts": {
"build": "true",
"dev": "bun run docs:dev",
"docs:build": "bun run undocs build docs",
"docs:dev": "NUXT_DOCS_DEV=1 bun run undocs dev docs",
"lint": "eslint --cache . && prettier -c app cli schema",
"lint:fix": "eslint --cache . --fix && prettier -c -w app cli schema",
"prepack": "bun run build",
"profile:0x": "bunx 0x -o cli/main.mjs dev docs",
"profile:0x-kernel": "bun run profile:0x --kernel-tracing",
"profile:cpu": "rm -rf .profile && node --cpu-prof --diagnostic-dir ../.profile bin/cli.mjs dev docs",
"release": "bun run lint && changelogen --release && npm publish && git push --follow-tags",
"template:dev": "bun run undocs dev template",
"undocs": "./cli/main.mjs"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/simple-icons": "^1.2.24",
"@nuxt/content": "^2.13.4",
"@nuxt/fonts": "^0.10.3",
"@nuxt/ui-pro": "^1.7.0",
"@nuxtjs/plausible": "^1.2.0",
"@nuxtjs/tailwindcss": "^6.13.1",
"@resvg/resvg-wasm": "^2.6.2",
"automd": "^0.3.12",
"c12": "^2.0.2",
"citty": "^0.1.6",
"consola": "^3.4.0",
"defu": "^6.1.4",
"is-buffer": "^2.0.5",
"nitropack": "^2.10.4",
"nuxi": "^3.21.1",
"nuxt": "^3.15.4",
"nuxt-build-cache": "^0.1.1",
"pkg-types": "^1.3.1",
"scule": "^1.3.0",
"tailwindcss": "^3.4.17",
"unctx": "^2.4.1",
"unstorage": "^1.14.4",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.7.6",
"@nuxt/image": "^1.9.0",
"@types/node": "^22.13.4",
"changelogen": "^0.5.7",
"eslint": "^9.20.1",
"eslint-config-unjs": "^0.4.2",
"jiti": "^2.4.2",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"vue-tsc": "^2.2.0"
},
"packageManager": "[email protected]"
}