-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.45 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@owdproject/theme-win95",
"version": "0.1.3",
"description": "Open Web Desktop theme",
"keywords": [
"owd-client",
"owd-themes",
"owd-modules"
],
"homepage": "https://github.com/owdproject/theme-win95#readme",
"bugs": {
"url": "https://github.com/owdproject/theme-win95/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owdproject/theme-win95.git"
},
"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",
"src"
],
"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-win95/} nuxt generate playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && cd playground && pnpm exec nuxt prepare",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"validate": "desktop validate ."
},
"dependencies": {
"@nuxt/kit": "^4.4.4",
"@owdproject/kit-primevue": "workspace:*"
},
"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/app-terminal": "workspace:*",
"@owdproject/module-persistence": "workspace:*",
"@owdproject/kit-primevue": "workspace:*",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/test-utils": "^2.4.10",
"jsdom": "~29.1.1",
"nuxt": "^4.4.4",
"typescript": "~6.0.3",
"vitest": "^4.1.5",
"vue-tsc": "^3.2.7"
},
"peerDependencies": {
"@owdproject/core": "^3.3.1",
"@owdproject/kit-primevue": "^0.1.0",
"@owdproject/kit-tailwind": "^0.1.0",
"@owdproject/module-fs": "^0.0.6",
"@owdproject/module-persistence": "^0.1.0",
"nuxt": "^4.4.4"
},
"peerDependenciesMeta": {
"@owdproject/module-fs": {
"optional": true
},
"@owdproject/module-persistence": {
"optional": true
}
}
}