-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.61 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
{
"bin": {
"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": {
"@anatine/zod-openapi": "^2.2.6",
"@asteasolutions/zod-to-openapi": "^7.3.0",
"@cloudflare/vitest-pool-workers": "^0.5.37",
"@cloudflare/workers-types": "^4.20241216.0",
"@sentry/cli": "^2.39.1",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint-config-prettier": "^9.1.0",
"eslint-config-two-stroke": "1.1.7",
"eslint-config-typescript": "^3.0.0",
"jose": "^5.9.6",
"jwk-subtle": "^1.0.7",
"miniflare": "^3.20241205.0",
"openapi-fetch": "^0.13.3",
"openapi-typescript": "^7.4.4",
"openapi3-ts": "^4.4.0",
"pbkdf-subtle": "^1.0.0",
"toucan-js": "^4.0.0",
"zod": "^3.24.1"
},
"peerDependencies": {
"@sentry/cli": ">=2",
"eslint": ">=9",
"prettier": ">=3",
"typescript": ">=5",
"vitest": ">=1",
"wrangler": ">=3"
},
"description": "Simple Cloudflare Worker framework.",
"engines": {
"node": "^20.10.0"
},
"eslintConfig": {
"extends": [
"two-stroke"
]
},
"license": "MIT",
"main": "src/index.ts",
"name": "two-stroke",
"packageManager": "yarn@4.3.0",
"type": "module",
"version": "4.1.4",
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}