diffable-objects
Version:
A package for dynamic state tracking for Cloudflare's Durable Objects using SQLite
45 lines • 1.14 kB
JSON
{
"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"
}
},
"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"
},
"files": [
"dist",
"LICENSE"
],
"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"
}
}