-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.51 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
{
"name": "durable-utils",
"version": "0.1.4",
"description": "Utilities for Cloudflare Durable Objects and Workers, including SQL migrations and stream helpers.",
"module": "index.esm.js",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"fmt": "npx prettier . --check --write --ignore-unknown",
"gen:types": "tsc --emitDeclarationOnly",
"prebuild": "npx shx rm -rf ./dist",
"build": "node --experimental-modules ./tools/build.mjs",
"test": "vitest --run",
"release": "npm test && npm run build && npm run gen:types",
"prenpm:publish": "npm run release",
"npm:publish": "npx shx rm -rf npm_dist && npx shx mkdir -p npm_dist && npx shx cp -r package.json README.md dist/* dist/experimental npm_dist/ && cd npm_dist && npm publish --access public",
"npm:publish:dryrun": "npm run npm:publish -- --dry-run"
},
"keywords": [
"cloudflare",
"durable-objects",
"workers",
"sqlite"
],
"author": "Lambros Petrou (lambrospetrou.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/lambrospetrou/durable-utils.git"
},
"license": "MIT",
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.5.21",
"@cloudflare/workers-types": "^4.20241022.0",
"esbuild": "^0.24.0",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"typescript": "^5.6.3",
"vitest": "^2.1.3",
"wrangler": "^3.83.0"
}
}