-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.43 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.43 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "powersync-nuxt",
"version": "1.9.2",
"description": "Powersync Nuxt module",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/khawarizmus/powersync-nuxt.git"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxi prepare playground && nuxt-module-build build",
"dev": "nuxi dev playground",
"play:prod": "npm run prepack && nuxi dev playground",
"release": "npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"release:strict": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"docs:dev": "vitepress dev docs",
"docs:build": "nuxi prepare playground && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@iconify-json/carbon": "^1.2.13",
"@journeyapps/wa-sqlite": "^1.2.6",
"@nuxt/devtools": "^2.6.2",
"@nuxt/devtools-kit": "^2.6.2",
"@nuxt/devtools-ui-kit": "^2.6.2",
"@nuxt/kit": "^4.0.3",
"@powersync/kysely-driver": "^1.3.0",
"@powersync/vue": "^0.4.0",
"@powersync/web": "^1.27.1",
"@tanstack/vue-table": "^8.21.3",
"@vueuse/nuxt": "^13.9.0",
"consola": "^3.4.2",
"defu": "^6.1.4",
"destr": "^2.0.5",
"fuse.js": "^7.1.0",
"mitt": "^3.0.1",
"reka-ui": "^2.5.0",
"shiki": "^3.13.0",
"sirv": "^3.0.1",
"unocss": "^66.5.2",
"unstorage": "^1.17.1"
},
"peerDependencies": {
"@journeyapps/wa-sqlite": "^1.2.6",
"@powersync/kysely-driver": "^1.3.0",
"@powersync/vue": "^0.4.0",
"@powersync/web": "^1.27.1"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.9.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.1.2",
"@nuxt/test-utils": "^3.19.2",
"changelogen": "^0.6.2",
"eslint": "^9.33.0",
"nuxt": "^4.1.2",
"v-lazy-show": "^0.3.0",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.5.0",
"vitepress": "2.0.0-alpha.12",
"vitest": "^3.2.4",
"vue": "^3.5.20",
"vue-tsc": "^3.0.8"
},
"packageManager": "pnpm@10.12.1"
}