-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.86 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.86 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
61
62
63
64
65
66
67
68
69
70
71
{
"bin": {
"api-types": "./bin/api-types.mjs",
"bulk": "./bin/bulk.mjs",
"deploy": "./bin/deploy.mjs",
"dev": "./bin/dev.mjs",
"format": "./bin/format.mjs",
"lint": "./bin/lint.mjs",
"test": "./bin/test.mjs",
"type-check": "./bin/type-check.mjs"
},
"dependencies": {
"@cloudflare/vitest-pool-workers": "^0.14.1",
"@sentry/cli": "^3.3.4",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitest/runner": "^4.1.2",
"@vitest/snapshot": "^4.1.2",
"eslint-config-prettier": "^10.1.8",
"eslint-config-two-stroke": "^1.5.2",
"eslint-config-typescript": "^3.0.0",
"jose": "^6.2.2",
"jwk-subtle": "^1.1.5",
"mime": "^4.1.0",
"miniflare": "^4.20260317.3",
"msw": "^2.12.14",
"openapi-fetch": "^0.17.0",
"openapi-typescript": "^7.13.0",
"pbkdf-subtle": "^1.1.5",
"toucan-js": "^4.1.1",
"zod": "^4.3.6"
},
"peerDependencies": {
"@sentry/cli": ">=2",
"eslint": ">=10",
"prettier": ">=3",
"typescript": ">=5",
"vitest": ">=4",
"wrangler": ">=3"
},
"description": "Simple Cloudflare Worker framework.",
"engines": {
"node": "^24.9.0"
},
"eslintConfig": {
"extends": [
"two-stroke"
]
},
"license": "MIT",
"main": "src/index.ts",
"name": "two-stroke",
"packageManager": "pnpm@10.30.2+sha512.36cdc707e7b7940a988c9c1ecf88d084f8514b5c3f085f53a2e244c2921d3b2545bc20dd4ebe1fc245feec463bb298aecea7a63ed1f7680b877dc6379d8d0cb4",
"prettier": {
"printWidth": 100
},
"repository": {
"type": "git",
"url": "https://github.com/change-engine/two-stroke"
},
"type": "module",
"version": "7.5.0",
"devDependencies": {
"@types/eslint": "^9.6.1",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}