-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.24 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "planetscale-stream-ts",
"version": "1.1.0",
"description": "Run Vitess VStream & Messaging streams on PlanetScale instances, in Typescript.",
"keywords": [
"planetscale",
"vitess",
"vstream",
"messaging"
],
"homepage": "https://github.com/andrao/planetscale-stream-ts#readme",
"bugs": {
"url": "https://github.com/andrao/planetscale-stream-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrao/planetscale-stream-ts.git"
},
"license": "MIT",
"author": "andrao",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "rm -rf ./dist && rm -f node_modules/.cache/tsbuildinfo.build.json && tsc -p tsconfig.build.json",
"clean": "rm -rf .node_modules",
"format": "pnpm exec prettier --check $PWD",
"generate": "buf generate",
"postgenerate": "pnpm run format --write",
"lint": "eslint .",
"lint:buf": "buf lint",
"messaging": "tsx ./examples/messaging.ts",
"prepack": "pnpm run build",
"test": "vitest run .",
"test:i": "RUN_INTEGRATION_TESTS=1 vitest run .",
"typecheck": "tsc --noEmit",
"vstream": "tsx ./examples/vstream.ts"
},
"prettier": "@andrao/prettier",
"eslintConfig": {
"extends": "./node_modules/@andrao/eslint/lib/base.js",
"root": true
},
"release": {
"branches": [
"main",
"next",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"pnpm-lock.yaml"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"dependencies": {
"@bufbuild/protobuf": "^1.0.0",
"@connectrpc/connect": "^1.0.0",
"@connectrpc/connect-node": "^1.5.0"
},
"devDependencies": {
"@andrao/eslint": "2.2.1",
"@andrao/prettier": "1.0.2",
"@andrao/tsconfig": "1.0.0",
"@bufbuild/buf": "^1.44.0",
"@bufbuild/protoc-gen-es": "^1.0.0",
"@connectrpc/protoc-gen-connect-es": "^1.0.0",
"@semantic-release/git": "10.0.1",
"@t3-oss/env-nextjs": "0.11.1",
"@types/node": "20.12.2",
"chalk": "4.1.2",
"dotenv": "16.4.5",
"semantic-release": "23.0.6",
"tsx": "4.19.1",
"typescript": "5.6.2",
"vitest": "2.1.1",
"zod": "3.23.8"
},
"packageManager": "pnpm@9.12.1",
"engines": {
"node": ">=20"
}
}