-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "rocketpool-docs",
"version": "0.9.0",
"description": "Rocket Pool Documentation - Decentralised Ethereum Liquid Staking Protocol",
"main": "index.js",
"type": "module",
"authors": {
"name": "Rocket Pool Protocol",
"email": "[email protected]"
},
"repository": "https://github.com/rocket-pool/docs.rocketpool.net",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@headlessui/react": "^2.2.0",
"prettier": "^3.3.3",
"rspress": "^1.35.3",
"rspress-plugin-vue": "^1.0.0",
"taze": "^0.18.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"scripts": {
"dev": "rspress docs",
"build": "rspress build",
"format": "bunx @biomejs/biome format --write .",
"prettier": "prettier -w -u . !package.json !pnpm-lock.yaml !bun.lockb"
},
"prettier": {
"semi": true,
"endOfLine": "lf",
"printWidth": 200,
"tabWidth": 2,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": true,
"singleQuote": false
}
}