forked from cloudflare/containers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "@cloudflare/containers",
"version": "0.0.13",
"description": "Helper class for container-enabled Durable Objects",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": "cloudflare/containers",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --external cloudflare:workers --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx --config .eslintrc.js",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run build"
},
"keywords": [
"partyserver",
"containers",
"durable-objects",
"cloudflare"
],
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@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",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"tsup": "^8.0.2",
"typescript": "^5.8.3",
"@cloudflare/workers-types": "^4.20250403.0"
}
}