-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.3 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
{
"name": "za",
"version": "0.0.1",
"description": "一个低级组件库,用于构建可访问的高级 ui 库、设计系统和带有 react 的应用程序。",
"author": "stbui <[email protected]>",
"homepage": "https://github.com/stbui/za",
"license": "ISC",
"main": "lib/index",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/stbui/za.git"
},
"bugs": {
"url": "https://github.com/stbui/za/issues"
},
"private": true,
"workspaces": [
"packages/*",
"vscode/*"
],
"scripts": {
"build": "lerna run build",
"release": "yarn run build && lerna publish --exact --conventional-commits",
"docs": "node ./script/docs.js",
"docs:deploy": "dumi build && gh-pages -d dist",
"prettier": "prettier --config ./.prettierrc.js --write --list-different \"packages/*/src/**/*.{js,json,ts,tsx}\""
},
"devDependencies": {
"@types/styled-components": "^5.1.14",
"@types/react": "17.0.24",
"@types/react-dom": "17.0.9",
"gh-pages": "^3.2.3",
"chokidar": "^3.5.2",
"dumi": "^1.1.29",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
}
}