-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.03 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
{
"name": "@owdproject/theme-gnome",
"version": "0.1.1",
"description": "GNOME desktop theme for Open Web Desktop",
"homepage": "https://github.com/owdproject/theme-gnome#readme",
"license": "MIT",
"author": {
"name": "Open Web Desktop Team",
"url": "https://github.com/owdproject"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"development": "./src/module.ts",
"import": "./dist/module.mjs",
"default": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"nx": {
"name": "theme-gnome"
},
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "pnpm run dev:prepare && cd playground && pnpm exec nuxt dev",
"dev:build": "nuxt build playground",
"dev:generate": "NUXT_APP_BASE_URL=${NUXT_APP_BASE_URL:-/theme-gnome/} nuxt generate playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && cd playground && pnpm exec nuxt prepare",
"validate": "desktop validate ."
},
"dependencies": {
"@nuxt/kit": "^4.4.4",
"@owdproject/kit-primevue": "workspace:*",
"defu": "^6.1.4",
"html2canvas": "^1.4.1",
"vue3-carousel": "^0.15.0"
},
"devDependencies": {
"@nuxt/devtools": "^3.2.4",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.4",
"@owdproject/core": "workspace:*",
"@owdproject/module-fs": "workspace:*",
"@owdproject/kit-primevue": "workspace:*",
"@owdproject/kit-tailwind": "workspace:*",
"nuxt": "^4.4.4",
"typescript": "~6.0.3"
},
"optionalDependencies": {
"@owdproject/app-classic-audioplayer": "workspace:*"
},
"peerDependencies": {
"@owdproject/core": "^3.3.1",
"@owdproject/kit-primevue": "^0.1.0",
"@owdproject/kit-tailwind": "^0.1.0",
"@owdproject/module-fs": "^0.0.6",
"nuxt": "^4.4.4"
},
"peerDependenciesMeta": {
"@owdproject/module-fs": {
"optional": true
}
}
}