-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.64 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.64 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
103
104
105
106
107
{
"name": "crstore",
"version": "0.24.0",
"description": "Conflict-free replicated store.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Azarattum/CRStore"
},
"author": {
"name": "Azarattum",
"homepage": "https://github.com/Azarattum"
},
"keywords": [
"store",
"replicated",
"sync",
"conflict free",
"CRDT",
"sqlite",
"crsqlite",
"kysely",
"trpc",
"svelte",
"solid",
"react"
],
"scripts": {
"dev": "vite dev",
"build": "svelte-kit sync && svelte-package && tsc-esm-fix --target='dist'",
"test": "vitest",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write ."
},
"devDependencies": {
"@merged/react-solid": "^1.0.1",
"@rollup/pluginutils": "^5.1.4",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "2.17.1",
"@sveltejs/package": "2.3.10",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@types/better-sqlite3": "^7.6.12",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/ws": "^8.5.14",
"prettier": "^3.5.0",
"prettier-plugin-svelte": "^3.3.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"solid-js": "^1.9.4",
"superstruct": "^2.0.2",
"svelte": "^5.19.9",
"svelte-check": "^4.1.4",
"tsc-esm-fix": "^3.1.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-solid": "^2.11.1",
"vitest": "^3.0.5",
"ws": "^8.18.0"
},
"type": "module",
"dependencies": {
"@types/bun": "^1.2.2",
"@vlcn.io/crsqlite": "0.16.3",
"@vlcn.io/crsqlite-wasm": "0.16.0",
"better-sqlite3": "^11.8.1",
"kysely": "^0.27.5"
},
"files": [
"dist",
"runtime"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./svelte": {
"types": "./dist/svelte.d.ts",
"default": "./dist/svelte.js"
},
"./react": {
"types": "./dist/react.d.ts",
"default": "./dist/react.js"
},
"./solid": {
"types": "./dist/solid.d.ts",
"default": "./dist/solid.js"
},
"./runtime": {
"types": "./runtime/index.d.ts",
"node": "./runtime/server.js",
"default": "./runtime/browser.js"
}
},
"optionalDependencies": {
"react": "^19.0.0",
"solid-js": "^1.9.4",
"svelte": "^5.19.9"
}
}