-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "@zunderai/ui",
"type": "module",
"version": "0.1.8",
"description": "Zunder is a Nuxt UI compatible Library for building AI Apps, powered by Vue & Tailwind CSS",
"license": "MIT",
"main": "./nuxt.config.ts",
"files": [
"app",
"assets",
"components",
"composables",
"lib",
"modules",
"plugins",
"types",
"app.config.ts",
"nuxt.config.ts",
"tailwind.config.ts"
],
"scripts": {
"play": "nuxi dev .playground",
"dev:prepare": "nuxt prepare .playground",
"build": "nuxt build .playground",
"generate": "nuxt generate .playground",
"preview": "nuxt preview .playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "nuxi typecheck",
"release": "pnpm build && pnpm release-it",
"dev": "nuxt build --watch",
"watch": "tsc --watch"
},
"dependencies": {
"@morev/vue-transitions": "^3.0.2",
"@nuxt/kit": "^3.12.4",
"@nuxt/ui": "^2.18.4",
"@release-it/conventional-changelog": "^8.0.1"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.4.0",
"eslint": "^8.57.0",
"nuxt": "^3.12.4",
"release-it": "^17.6.0",
"typescript": "^5.5.3",
"vue": "latest",
"vue-tsc": "^2.0.29"
},
"resolutions": {
"@zunderai/ui": "workspace:*"
}
}