-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.23 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.23 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@rstack-dev/doc-ui",
"version": "1.12.5",
"type": "module",
"types": "./dist/index.d.ts",
"license": "MIT",
"packageManager": "pnpm@10.25.0",
"exports": {
"./nav-icon": {
"types": "./dist/nav-icon/index.d.ts",
"import": "./dist/nav-icon/index.js"
},
"./benchmark": {
"types": "./dist/benchmark/index.d.ts",
"import": "./dist/benchmark/index.js"
},
"./tool-stack": {
"types": "./dist/tool-stack/index.d.ts",
"import": "./dist/tool-stack/index.js"
},
"./section-style": {
"types": "./dist/section-style/index.d.ts",
"import": "./dist/section-style/index.js"
},
"./hero": {
"types": "./dist/hero/index.d.ts",
"import": "./dist/hero/index.js"
},
"./fully-featured": {
"types": "./dist/fully-featured/index.d.ts",
"import": "./dist/fully-featured/index.js"
},
"./built-with-rspack": {
"types": "./dist/built-with-rspack/index.d.ts",
"import": "./dist/built-with-rspack/index.js"
},
"./why-rspack": {
"types": "./dist/why-rspack/index.d.ts",
"import": "./dist/why-rspack/index.js"
},
"./background-image": {
"types": "./dist/background-image/index.d.ts",
"import": "./dist/background-image/index.js"
},
"./announcement": {
"types": "./dist/announcement/index.d.ts",
"import": "./dist/announcement/index.js"
},
"./antd": {
"types": "./dist/antd/index.d.ts",
"import": "./dist/antd/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/rstackjs/rstack-doc-ui"
},
"files": [
"dist"
],
"scripts": {
"dev": "pnpm run storybook",
"build-storybook": "storybook build",
"storybook": "storybook dev -p 6006",
"prepare": "rslib && simple-git-hooks",
"build": "rslib",
"build:watch": "rslib -w",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"bump": "npx bumpp",
"chromatic": "chromatic"
},
"nano-staged": {
"*.{md,mdx,json,css,less,scss}": "prettier --write",
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"biome check --write --formatter-enabled=false --linter-enabled=true --no-errors-on-unmatched",
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rsbuild/plugin-react": "1.4.2",
"@rsbuild/plugin-sass": "1.4.0",
"@rslib/core": "^0.18.4",
"@rstack-dev/doc-ui": "workspace:*",
"@storybook/addon-themes": "^10.1.5",
"@storybook/react": "^10.1.5",
"@storybook/test": "9.0.0-alpha.2",
"@types/node": "~24.10.2",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"antd": "^6.1.0",
"chromatic": "^13.3.5",
"execa": "9.6.1",
"fs-extra": "11.3.2",
"lottie-web": "5.13.0",
"nano-staged": "^0.9.0",
"prettier": "~3.7.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "~6.1.2",
"semver": "7.7.3",
"simple-git-hooks": "^2.13.1",
"storybook": "^10.1.5",
"storybook-addon-rslib": "^3.1.0",
"storybook-react-rsbuild": "^3.1.0",
"typescript": "~5.9.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}