-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.72 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@ticketbridge/hyper-durable",
"version": "0.2.0-rc1",
"description": "Object-like access to Durable Object properties and methods",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ticket-bridge/hyper-durable.git"
},
"author": "Travis Frank <[email protected]>",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"prebuild": "rm -rf dist && mkdir dist && cp src/index.d.ts dist/index.d.ts",
"build": "ENV=prod node build.js",
"build-test": "ENV=test node build.js",
"test": "yarn build-test && NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@cloudflare/workers-types": "3.11.0",
"@miniflare/durable-objects": "^2.5.0",
"@miniflare/storage-memory": "^2.5.0",
"@types/chai": "^4.3.1",
"@types/jest": "^28.1.1",
"@types/lodash": "^4.14.191",
"@types/node": "^17.0.31",
"babel-jest": "^28.0.3",
"chai": "^4.3.6",
"esbuild": "^0.14.39",
"jest": "^28.1.0",
"jest-environment-miniflare": "^2.4.0",
"ts-jest": "^28.0.1",
"typescript": "^4.6.4",
"wrangler": "^2.0.5"
},
"dependencies": {
"itty-router": "^2.6.1",
"lodash": "^4.17.21"
},
"bugs": {
"url": "https://github.com/ticket-bridge/hyper-durable/issues"
},
"files": [
"dist/*"
],
"homepage": "https://github.com/ticket-bridge/hyper-durable#readme",
"keywords": [
"cloudflare",
"durable",
"durable-objects",
"objects"
]
}