-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.36 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.36 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
117
118
119
120
{
"name": "@rstack-dev/doc-ui",
"version": "1.7.3",
"type": "module",
"types": "./dist/index.d.ts",
"license": "MIT",
"packageManager": "pnpm@10.7.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/rspack-contrib/rstack-doc-ui"
},
"files": [
"dist"
],
"scripts": {
"dev": "pnpm run storybook",
"build-storybook": "storybook build",
"storybook": "storybook dev -p 6006",
"prepare": "rslib build && simple-git-hooks",
"build": "rslib build",
"build:watch": "rslib build -w",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"bump": "npx bumpp"
},
"dependencies": {
"framer-motion": "^12.6.2"
},
"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.1.1",
"@rsbuild/plugin-sass": "1.3.1",
"@rslib/core": "^0.6.1",
"@rstack-dev/doc-ui": "workspace:*",
"@storybook/addon-essentials": "^8.6.11",
"@storybook/addon-themes": "^8.6.11",
"@storybook/react": "^8.6.11",
"@storybook/test": "^8.6.11",
"@types/node": "~22.13.14",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.5",
"antd": "^5.24.5",
"execa": "9.5.2",
"fs-extra": "11.3.0",
"lottie-web": "5.12.2",
"nano-staged": "^0.8.0",
"prettier": "~3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.16.0",
"rimraf": "~6.0.1",
"semver": "7.7.1",
"simple-git-hooks": "^2.12.1",
"storybook": "^8.6.11",
"storybook-addon-rslib": "^1.0.1",
"storybook-react-rsbuild": "1.0.1",
"typescript": "~5.8.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
}
}