-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 3.21 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
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
{
"name": "@rstack-dev/doc-ui",
"version": "1.5.4",
"type": "module",
"types": "./dist/index.d.ts",
"license": "MIT",
"packageManager": "[email protected]",
"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"
}
},
"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": "^11.12.0"
},
"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/core": "1.1.6",
"@rsbuild/plugin-react": "1.0.7",
"@rsbuild/plugin-sass": "1.1.1",
"@rslib/core": "^0.1.1",
"@rstack-dev/doc-ui": "workspace:*",
"@storybook/addon-essentials": "^8.4.6",
"@storybook/addon-themes": "^8.4.6",
"@storybook/react": "^8.4.6",
"@types/node": "~22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"antd": "^5.22.2",
"execa": "9.5.1",
"fs-extra": "11.2.0",
"lottie-web": "5.12.2",
"nano-staged": "^0.8.0",
"prettier": "~3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.13.1",
"rimraf": "~6.0.1",
"semver": "7.6.3",
"simple-git-hooks": "^2.11.1",
"storybook": "^8.4.6",
"storybook-react-rsbuild": "0.1.5",
"typescript": "~5.7.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
}
}