-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.32 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
{
"name": "@slopus/sync",
"version": "0.0.7",
"description": "A TypeScript sync engine with local fields, versioned rebases, and Immer-based state management",
"type": "module",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/slopus/sync.git"
},
"homepage": "https://github.com/slopus/sync#readme",
"bugs": {
"url": "https://github.com/slopus/sync/issues"
},
"keywords": [
"sync",
"state-management",
"typescript",
"immer",
"crdt",
"optimistic-updates",
"rebase",
"local-fields"
],
"author": "Steve Korshakov <steve@korshakov.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "tsx ./sources/main.ts",
"test": "tsc --noEmit && vitest run",
"prepublishOnly": "yarn build && yarn test"
},
"devDependencies": {
"@types/node": "^24.9.1",
"glob": "^11.0.3",
"gray-matter": "^4.0.3",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.3"
},
"dependencies": {
"@paralleldrive/cuid2": "^3.1.0",
"immer": "^10.2.0"
}
}