-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"homepage": "https://jaywcjlove.github.io/idoc/",
"author": "kenny wang <wowohoo@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/idoc.git"
},
"keywords": [
"idoc",
"markdown",
"api",
"document",
"tool"
],
"scripts": {
"build": "lerna exec --scope idoc -- npm run build",
"build:doc": "lerna exec --scope document -- npm run build",
"type-check": "lerna exec --scope idoc -- npm run type-check",
"version": "lerna version --exact --force-publish --no-push --no-git-tag-version",
"prettier": "prettier --write --ignore-unknown \"**/*.{js,ts,css,json}\"",
"clean": "lerna clean --yes",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,ts,css,json}": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=16.0.0"
},
"workspaces": [
"packages/core",
"examples/default",
"examples/document",
"examples/theme"
],
"devDependencies": {
"lerna": "^8.1.8",
"husky": "^9.0.11",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"tsbb": "^4.4.0"
}
}