-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.57 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.57 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
{
"name": "@rstore/nuxt-drizzle",
"type": "module",
"version": "0.8.4",
"description": "Rstore + Nuxt + Drizzle",
"license": "MIT",
"repository": {
"url": "https://github.com/Akryum/rstore.git",
"type": "git",
"directory": "packages/nuxt-drizzle"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"skills"
],
"scripts": {
"build": "nuxi prepare && nuxt-module-build build",
"dev": "pnpm run build",
"dev:prepare": "nuxt prepare",
"dev:playground": "nuxi dev playground",
"dev:build": "nuxi build playground",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit"
},
"peerDependencies": {
"drizzle-orm": "*"
},
"dependencies": {
"@nuxt/kit": "^4.0.0",
"@rstore/nuxt": "workspace:^",
"@rstore/offline": "workspace:^",
"@rstore/shared": "workspace:^",
"@rstore/vue": "workspace:^",
"@vueuse/core": "^14.0.0",
"h3": "^1.15.1",
"jiti": "^2.4.2",
"pathe": "^2.0.3",
"superjson": "^2.2.3"
},
"devDependencies": {
"@nuxt/devtools": "^2.3.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "catalog:",
"@nuxt/test-utils": "^3.17.2",
"@types/node": "catalog:",
"drizzle-orm": "^0.45.2",
"nuxt": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"vue-tsc": "catalog:"
}
}