-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.35 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "pinia-colada-plugin-normalizer",
"version": "0.3.0",
"description": "Normalized entity caching plugin for Pinia Colada",
"keywords": [
"cache",
"entity",
"normalization",
"pinia",
"pinia-colada",
"pinia-colada-plugin",
"query",
"real-time",
"persistence",
"indexeddb",
"offline"
],
"homepage": "https://github.com/Danny-Devs/pinia-colada-plugin-normalizer",
"bugs": {
"url": "https://github.com/Danny-Devs/pinia-colada-plugin-normalizer/issues"
},
"license": "MIT",
"author": {
"name": "Danny Devs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danny-Devs/pinia-colada-plugin-normalizer.git"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"exports": {
".": "./dist/index.mjs",
"./sqlite-worker": "./dist/sqlite-worker.mjs",
"./package.json": "./package.json"
},
"scripts": {
"bench": "npx tsx src/benchmark.ts",
"build": "tsdown",
"dev": "cd playground && npx vite",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"fmt": "oxfmt",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@pinia/colada": "^1.3.1",
"@sqlite.org/sqlite-wasm": "3.53.0-build1",
"@vue/devtools-api": "^8.1.1",
"@vue/reactivity": "^3.5.32",
"@vue/test-utils": "^2.4.6",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.8.9",
"oxfmt": "^0.36.0",
"oxlint": "^1.59.0",
"pinia": "^3.0.4",
"tsdown": "^0.21.7",
"typescript": "^5.7.0",
"vitepress": "^1.6.4",
"vitest": "^3.0.0",
"vue": "^3.5.32"
},
"peerDependenciesMeta": {
"@vue/devtools-api": {
"optional": true
},
"@sqlite.org/sqlite-wasm": {
"optional": true
}
},
"peerDependencies": {
"@pinia/colada": ">=1.0.0 <2.0.0",
"@sqlite.org/sqlite-wasm": "*",
"@vue/devtools-api": ">=7.0.0",
"pinia": "^2.2.6 || ^3.0.0",
"vue": ">=3.3.0"
},
"packageManager": "pnpm@10.32.0",
"engines": {
"node": ">=18"
}
}