-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.08 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.08 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
{
"name": "connect-docs",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "docusaurus start",
"build": "docusaurus build",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"swizzle": "docusaurus swizzle",
"check:types": "tsc --noEmit",
"format": "npm run format:src && npm run format:md",
"format:src": "biome format --write .",
"format:md": "rumdl fmt .",
"lint": "npm run lint:src && npm run lint:md",
"lint:src": "biome lint .",
"lint:fix": "biome lint --write .",
"lint:md": "rumdl check .",
"check": "biome check .",
"check:fix": "biome check --write .",
"write:translations": "docusaurus write-translations",
"write:heading-ids": "docusaurus write-heading-ids",
"license-header": "license-header",
"ci": "npm run build && npm run check:fix && npm run lint:md && npm run check:types && npm run license-header",
"publish": "npm install && npm run lint && npm run check:types && npm run build"
},
"dependencies": {
"@buf/connectrpc_eliza.bufbuild_es": "^2.2.2-20230913231627-233fca715f49.2",
"@bufbuild/protobuf": "^2.11.0",
"@connectrpc/connect": "^2.1.1",
"@connectrpc/connect-web": "^2.1.1",
"@docusaurus/core": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@react-hookz/web": "^25.2.0",
"clsx": "^2.1.1",
"prism-react-renderer": "^2.4.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@bufbuild/license-header": "^0.0.4",
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@types/react": "^18.3.12",
"rumdl": "^0.1.67",
"typescript": "^5.9.3"
},
"licenseHeader": {
"licenseType": "apache",
"yearRange": "2021-2026",
"copyrightHolder": "The Connect Authors"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=18.0"
}
}