-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.59 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
{
"name": "@owdproject/module-fs",
"version": "0.0.4",
"description": "Virtual filesystem module for Open Web Desktop",
"keywords": ["owd-client", "owd-modules"],
"license": "MIT",
"homepage": "https://github.com/owdproject/module-fs",
"author": {
"name": "Open Web Desktop Team",
"url": "https://github.com/owdproject"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./runtime/*": {
"types": "./src/runtime/*",
"import": "./src/runtime/*"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": ["./dist/types.d.mts"]
}
},
"files": ["dist"],
"nx": { "name": "module-fs" },
"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:-/module-fs/} 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.3.0",
"@zenfs/archives": "^1.2.0",
"@zenfs/core": "^2.2.3",
"@zenfs/dom": "^1.1.7",
"vue3-selecto": "^1.12.3",
"@owdproject/kit-theme": "0.0.1"
},
"devDependencies": {
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.3.0",
"@owdproject/core": "workspace:*",
"nuxt": "^4.3.0",
"typescript": "~5.9.3"
},
"peerDependencies": {
"@owdproject/core": "^3.2.0"
}
}