-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.96 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
{
"name": "@type32/nuxt-cs-utils",
"version": "2.0.4",
"description": "Client/Server Utilities for Nuxt.",
"repository": "https://github.com/CTRL-Neo-Studios/client-server-utils",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
},
"./server": {
"types": "./dist/runtime/server.d.ts",
"import": "./dist/runtime/server.js"
},
"./client": {
"types": "./dist/runtime/client.d.ts",
"import": "./dist/runtime/client.js"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
],
"runtime": [
"./dist/runtime/index.d.ts"
],
"server": [
"./dist/runtime/server.d.ts"
],
"client": [
"./dist/runtime/client.d.ts"
]
}
},
"files": [
"dist"
],
"workspaces": [
"playground"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "bun run dev:prepare && nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
"release": "bun run prepack && changelogen --release && bun publish && git push --follow-tags",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@internationalized/date": "^3.12.1",
"@nuxt/kit": "^4.4.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@nuxt/devtools": "^4.0.0-alpha.4",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.2",
"@nuxt/test-utils": "^4.0.2",
"@types/node": "^25.6.0",
"changelogen": "^0.6.2",
"nuxt": "^4.4.2",
"typescript": "~6.0.3",
"vitest": "^4.1.5",
"vue-tsc": "^3.2.7"
}
}