-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "trpc-durable-objects",
"version": "1.3.4",
"description": "Testing out trpc for durable objects",
"files": [
"dist/src/**/*"
],
"main": "dist/src/index.js",
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json --verbose",
"format": "prettier --write '**/*.{js,css,json,md}'",
"prepare": "husky install",
"prepublish": "yarn build",
"semantic-release": "semantic-release"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"docs",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"author": "Markus Ahlstrand <[email protected]>",
"keywords": [
"cloudflare",
"workers",
"durable objects",
"trpc"
],
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230404.0",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@commitlint/prompt-cli": "^17.6.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-typescript": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@sagi.io/workers-jwt": "^0.0.23",
"@trpc/client": "^10.23.0",
"@trpc/server": "^10.23.0",
"serverless-cloudflare-workers": "^1.2.0",
"zod": "^3.21.4"
}
}