-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) 路 3.34 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) 路 3.34 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
{
"name": "@rsuite/icons",
"version": "1.4.1",
"description": "All icons of rsuite",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"typings": "lib/esm/index.d.ts",
"directories": {
"lib": "cjs/"
},
"scripts": {
"format": "prettier --write \"{src,test}/**/*.{tsx,ts,js}\"",
"format:check": "prettier --list-different \"{src,test}/**/*.{tsx,ts,js}\"",
"build": "npm run build:gulp && npm run build:types",
"build:svg": "gulp svgToReact",
"build:gulp": "gulp build",
"build:sync-icon-component": "gulp buildIconComponent",
"build:types": "npm run build:types-cjs && npm run build:types-esm",
"build:types-cjs": "npx tsc --project tsconfig.build.json --emitDeclarationOnly --outDir lib/cjs",
"build:types-esm": "npx tsc --project tsconfig.build.json --emitDeclarationOnly --outDir lib/esm",
"tdd": "cypress open --component --browser=chrome",
"lint:ts": "eslint src/**/*.{ts,tsx}",
"lint": "npm run lint:ts",
"test": "npm run lint && npm run run:test-case",
"run:test-case": "cypress run --component",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "npm run changelog && git add -A",
"prepublishOnly": "cross-env npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"author": "hiyangguo@gmail.com",
"license": "MIT",
"files": [
"cjs",
"esm",
"dist",
"meta.json"
],
"repository": {
"type": "git",
"url": "git@github.com:rsuite/rsuite-icons.git"
},
"dependencies": {
"@rsuite/icon-font": "^4.1.0",
"classnames": "^2.2.5"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/addon-onboarding": "^8.5.3",
"@storybook/blocks": "^8.5.3",
"@storybook/react": "^8.5.3",
"@storybook/react-vite": "^8.5.3",
"@storybook/test": "^8.5.3",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@swc/core": "^1.7.35",
"@types/classnames": "^2.2.10",
"@types/lodash": "^4.14.162",
"@types/react": "^19.0.8",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^8.3.0",
"camelcase": "^6.1.0",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^5.2.1",
"cssnano": "^4.1.10",
"cypress": "^14.3.2",
"del": "^5.1.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-storybook": "^0.9.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-less": "^4.0.0",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-swc": "^2.2.0",
"less": "^3.12.2",
"lodash": "^4.17.20",
"prettier": "^2.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8.5.3",
"typescript": "^5.6.3",
"vite": "^5.4.9"
},
"sideEffects": [
"*.css",
"dist/css/*"
]
}