-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "nuxt-edgedb-module",
"type": "module",
"version": "0.0.52",
"description": "Nuxt 3 integration for EdgeDB.",
"license": "MIT",
"repository": "tahul/nuxt-edgedb",
"bin": "./dist/cli.mjs",
"exports": {
".": {
"types": "./dist/module.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.mjs",
"require": "./dist/utils.mjs"
},
"./runtime/*": "./dist/runtime/*"
},
"main": "./dist/module.cjs",
"types": "./dist/module.d.ts",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:cli": "jiti ./src/cli.ts",
"dev:build": "nuxi build playground",
"stub": "nuxt-module-build build --stub",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run build && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@clack/core": "^0.3.4",
"@clack/prompts": "^0.7.0",
"@edgedb/generate": "^0.5.3",
"@nuxt/kit": "^3.12.2",
"edgedb": "^1.5.7",
"execa": "^9.2.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@nuxt/devtools": "latest",
"@nuxt/module-builder": "^0.7.1",
"@nuxt/schema": "^3.12.2",
"@nuxt/test-utils": "^3.13.1",
"@types/node": "^20.14.3",
"@types/prompts": "^2.4.9",
"changelogen": "^0.5.5",
"eslint": "^9.5.0",
"nuxt": "^3.12.2",
"vitest": "^1.6.0"
},
"resolutions": {
"nuxt-edgedb-module": "link:."
}
}