-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.89 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.89 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": "nuxt-remote-fn",
"version": "0.6.0",
"packageManager": "pnpm@10.5.2",
"description": "Remote Functions. Instead of Event Handlers.",
"keywords": [
"nuxt",
"remote",
"rpc",
"http",
"h3",
"vue"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./server": {
"import": "./dist/runtime/server.js",
"types": "./dist/runtime/server.d.ts"
},
"./client": {
"import": "./dist/runtime/client.js",
"types": "./dist/runtime/client.d.ts"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"release": "pnpm dev:prepare && pnpm prepack && changeset publish"
},
"dependencies": {
"@nuxt/kit": "^3.17.5",
"@rollup/pluginutils": "^5.2.0",
"dedent": "^1.6.0",
"es-module-lexer": "^1.7.0",
"fast-glob": "^3.3.3",
"h3": "^1.15.3",
"pathe": "^2.0.3"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@nuxt/devtools": "^2.5.0",
"@nuxt/eslint-config": "^1.4.1",
"@nuxt/module-builder": "^1.0.1",
"@nuxt/schema": "^3.17.5",
"@nuxt/test-utils": "^3.19.1",
"@types/dedent": "^0.7.2",
"@types/node": "^24.0.3",
"eslint": "^9.29.0",
"nuxt": "^3.17.5",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.10"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"unrs-resolver"
]
}
}