-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.51 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.51 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
60
{
"name": "@cloudflare/containers",
"version": "0.3.0",
"description": "Helper class for container-enabled Durable Objects",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare/containers.git"
},
"scripts": {
"build": "tsc -p .",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx --config .eslintrc.js",
"format": "prettier --write \"src/**/*.ts\"",
"test": "set -e; for fixture in examples/*/; do if [ -d \"$fixture/test\" ] && [ -f \"$fixture/package.json\" ]; then cd \"$fixture\"; npm install; npm run test; cd - > /dev/null; fi; done"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"keywords": [
"containers",
"durable objects",
"durable-objects",
"cloudflare"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@cloudflare/workers-types": "^4.20260405.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.3",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.26.0",
"jest": "^29.7.0",
"pkg-pr-new": "^0.0.62",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"tsup": "^8.0.2",
"typescript": "latest",
"vitest": "^1.0.0"
},
"publishConfig": {
"access": "public"
}
}