-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.2 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
{
"name": "nuxt-pglite",
"version": "0.2.9",
"description": "A Nuxt module aimed to simplify the use of PGlite.",
"repository": "sandros94/nuxt-pglite",
"license": "MIT",
"type": "module",
"author": {
"name": "Sandro Circi",
"email": "[email protected]"
},
"packageManager": "[email protected]",
"build": {
"externals": [
"defu",
"hookable"
]
},
"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"
],
"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",
"release": "nr lint && nr test:run && nr prepack && changelogen --release --push --publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"db:push": "cd playground && drizzle-kit push --config=./drizzle.config.ts",
"db:generate": "cd playground && drizzle-kit generate --config=./drizzle.config.ts",
"db:migrate": "cd playground && drizzle-kit migrate --config=./drizzle.config.ts",
"db:studio": "cd playground && drizzle-kit studio --config=./drizzle.config.ts"
},
"dependencies": {
"@electric-sql/pglite": "^0.2.16",
"@electric-sql/pglite-sync": "^0.2.18",
"@nuxt/kit": "^3.15.3",
"db0": "^0.2.3"
},
"devDependencies": {
"@nuxt/devtools": "^2.0.0-beta.3",
"@nuxt/eslint-config": "^0.7.5",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.15.3",
"@nuxt/test-utils": "^3.15.4",
"changelogen": "^0.5.7",
"eslint": "^9.19.0",
"nuxt": "^3.15.3",
"typescript": "^5.7.3",
"valibot": "1.0.0-beta.14",
"vitest": "^3.0.4",
"vue-tsc": "^2.2.0"
},
"resolutions": {
"nuxt-pglite": "workspace:*",
"rollup": "^4.24.0",
"typescript": "5.6.3",
"vite": "^6.0.7",
"vue-tsc": "2.1.6"
}
}