-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.01 KB
/
package.json
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
{
"name": "nuxt-remote-fn",
"version": "0.5.3",
"packageManager": "[email protected]",
"description": "Remote Functions. Instead of Event Handlers.",
"keywords": [
"nuxt",
"remote",
"rpc",
"http",
"h3",
"vue"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./server": {
"import": "./dist/runtime/server.mjs",
"types": "./dist/runtime/server.d.ts"
},
"./client": {
"import": "./dist/runtime/client.mjs",
"types": "./dist/runtime/client.d.ts"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm prepack",
"release": "changelogen --release && npm publish && git push --follow-tags",
"update-deps": "taze -w && pnpm i",
"test": "vitest run",
"test:watch": "vitest watch",
"prepare": "cd playground && npx prisma migrate dev --name init && npx prisma db seed"
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"@rollup/pluginutils": "^5.1.0",
"dedent": "^1.5.1",
"es-module-lexer": "^1.5.0",
"fast-glob": "^3.3.2",
"h3": "^1.11.1",
"pathe": "^1.1.2"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.3.1",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.12.0",
"@prisma/client": "^5.12.1",
"@types/dedent": "^0.7.2",
"@types/node": "^20.12.5",
"changelogen": "^0.5.5",
"eslint": "^9.0.0",
"nuxt": "^3.11.2",
"prisma": "^5.12.1",
"taze": "^0.13.3",
"tsx": "^4.7.2",
"vitest": "^1.4.0"
}
}