-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "diffable-objects",
"version": "0.1.1",
"description": "A package for dynamic state tracking for Cloudflare's Durable Objects using SQLite",
"author": "Zeb Piasecki <zeb@zebulon.dev>",
"repository": "https://github.com/zebp/diffable-objects",
"license": "MIT",
"keywords": ["cloudflare", "workers", "durable-objects", "sqlite"],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json -w",
"format": "biome format ./**/*.ts --write",
"check:lint": "biome lint ./**/*.ts",
"check:format": "biome format ./**/*.ts",
"test": "vitest run"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cloudflare/vitest-pool-workers": "^0.5.40",
"@cloudflare/workers-types": "^4.20241224.0",
"typescript": "^5.7.2",
"vitest": "2.1.8"
},
"dependencies": {
"json-diff-ts": "^4.1.0"
},
"pnpm": {
"overrides": {
"lodash": "npm:@technically/lodash"
}
},
"files": [
"dist",
"LICENSE"
]
}