-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.41 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
116
117
118
119
120
121
122
{
"name": "@sinoui/icons",
"version": "2.0.0-alpha.2",
"license": "MIT",
"main": "dist/index.js",
"umd:main": "dist/icons.umd.production.js",
"module": "dist/icons.esm.js",
"typings": "dist/index.d.ts",
"homepage": "https://sinoui.github.io/icons",
"bugs": {
"url": "https://github.com/sinoui/icons/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinoui/icons.git"
},
"scripts": {
"test": "ts-lib-tools test",
"build": "ts-lib-tools build --simple",
"format": "ts-lib-tools format",
"lint": "ts-lib-tools lint",
"release": "yarn build && yarn publish dist --non-interactive --tag alpha",
"doc:dev": "docz dev",
"doc:build": "docz build",
"doc:publish": "docz build && gh-pages -d .docz/dist",
"build:js": "babel scripts --out-dir lib --copy-files",
"src:download": "babel-node --presets @babel/env --plugins @babel/plugin-proposal-class-properties scripts/download.js",
"src:genComp": "babel-node --presets @babel/env --plugins @babel/plugin-proposal-class-properties scripts/genComp.js --output-dir src --svg-dir material-icons --rename-filter ./renameFilters/material-design-icons"
},
"prettier": {
"printWidth": 80,
"useTabs": false,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"eslintConfig": {
"extends": "ts-lib"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"cross-env CI=true ts-lib-tools test",
"eslint --fix --color",
"git add"
]
},
"peerDependencies": {
"react": ">=16.8.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/polyfill": "^7.8.3",
"@babel/runtime": "^7.20.6",
"@sinoui/theme": "^0.3.5",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.1",
"@testing-library/react-hooks": "^3.2.1",
"@types/classnames": "^2.2.9",
"@types/react": "^18.0.26",
"@types/react-dom": "^16.9.5",
"@types/styled-components": "^5.0.1",
"babel-plugin-react-remove-properties": "^0.3.0",
"classnames": "^2.2.6",
"cross-fetch": "^3.0.4",
"css-loader": "^3.4.2",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"fs-extra": "^9.0.1",
"gh-pages": "^2.2.0",
"glob": "^7.1.6",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mustache": "^4.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"sinoui-components": "^0.2.21",
"style-loader": "^1.1.3",
"styled-components": "^5.0.0",
"svgo": "^1.3.2",
"ts-lib-tools": "^0.11.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.2",
"webpack-docz-ghpages-plugin": "^0.10.0",
"yargs": "^15.1.0"
},
"dependencies": {
"clsx": "^1.2.1",
"tslib": "^2.4.1",
"@babel/runtime": "^7.20.6"
}
}