forked from mark-magic/mark-magic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 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
{
"name": "@mark-magic/all",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"postinstall": "npx simple-git-hooks",
"setup-all": "pnpm -r run setup",
"format": "pnpm prettier --write 'packages/*/src/**/*.{js,ts}'",
"test-all": "pnpm -r run test",
"clean-all": "pnpx rimraf **/node_modules **/dist",
"docs-build": "typedoc --options typedoc.json",
"docs-deploy": "gh-pages -d dist -e /api --add"
},
"prettier": "@liuli-util/prettier-standard-config",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,md,json}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@liuli-util/prettier-standard-config": "^0.3.0",
"gh-pages": "^5.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"rollup": "^3.25.1",
"simple-git-hooks": "^2.8.1",
"turbo": "^1.10.3",
"typedoc": "^0.24.8",
"typedoc-plugin-resolve-crossmodule-references": "^0.3.3",
"typescript": "5.1.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit $1"
},
"pnpm": {
"patchedDependencies": {
"@apidevtools/json-schema-ref-parser@10.1.0": "patches/@apidevtools__json-schema-ref-parser@10.1.0.patch"
}
}
}