forked from storacha/w3up
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
{
"name": "w3protocol",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --write '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"format:check": "prettier --check '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"clean": "rm -rf docs node_modules pnpm-lock.yaml packages/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules,.next}",
"lint": "pnpm -r --if-present run lint",
"test": "pnpm -r --if-present run test",
"check": "pnpm -r --if-present run check",
"build": "pnpm -r --if-present run build",
"docs": "pnpm run build && typedoc --out docs",
"docs:markdown": "pnpm run build && docusaurus generate-typedoc"
},
"devDependencies": {
"@docusaurus/core": "^2.2.0",
"docusaurus-plugin-typedoc": "^0.18.0",
"lint-staged": "^13.1.0",
"prettier": "2.8.3",
"simple-git-hooks": "^2.8.1",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "4.9.4",
"wrangler": "^2.8.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,yml,json}": "prettier --write",
"*.js": "eslint --fix"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"engines": {
"node": ">=16"
},
"dependencies": {
"depcheck": "^1.4.3",
"typedoc": "^0.23.22",
"typedoc-plugin-missing-exports": "^1.0.0"
},
"packageManager": "pnpm@7.24.3",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react*"
]
}
}
}