-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.83 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
{
"name": "dom-explorer",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "nuxt generate",
"dev": "nuxt dev",
"lint": "eslint .",
"preinstall": "cd extras/angular && bun install",
"postinstall": "bun run postinstall:ammonia-wasm && bun run postinstall:angular && bun run --bun postinstall:nuxt",
"postinstall:nuxt": "nuxt prepare",
"postinstall:ammonia-wasm": "cd extras/ammonia-wasm && make",
"postinstall:angular": "cd extras/angular && bun run build && rm -rf ../../public/angular && cp -r dist/browser/ ../../public/angular",
"gentypes": "supabase gen types typescript --linked > app/utils/supabase.types.ts"
},
"devDependencies": {
"@nuxt/eslint": "^0.5.7",
"@nuxt/kit": "^3.14.1592",
"@nuxtjs/tailwindcss": "^6.12.2",
"@radix-icons/vue": "^1.0.0",
"@supabase/supabase-js": "^2.47.10",
"@tailwindcss/typography": "^0.5.15",
"@types/bun": "latest",
"@types/sortablejs": "^1.15.8",
"@vueuse/core": "^10.11.1",
"@vueuse/nuxt": "^10.11.1",
"@vueuse/router": "^11.3.0",
"@vueuse/integrations": "^12.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"detect-browser": "^5.3.0",
"eslint": "^9.17.0",
"highlight.js": "^11.11.0",
"nuxt": "^3.14.1592",
"nuxt-lucide-icons": "^1.0.5",
"nuxt-typed-router": "^3.7.2",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"qrcode": "^1",
"radix-vue": "^1.9.11",
"shadcn-nuxt": "^0.10.4",
"sortablejs": "^1.15.6",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2",
"vue": "^3.5.13",
"vue-tsc": "^2.1.10",
"wasm-pack": "^0.13.1",
"zod": "^3.24.1"
},
"module": "index.ts",
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}