forked from uiwjs/uiw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.82 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
{
"name": "uiw",
"version": "3.8.0",
"description": "A high quality UI Toolkit, A Component Library for React 16+.",
"homepage": "https://uiwjs.github.io",
"sideEffects": false,
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"typings": "lib/cjs/index.d.ts",
"author": "kenny wang <[email protected]>",
"scripts": {
"prepare": "npm run build",
"bundle": "kkt build --bundle --no-checkRequiredFiles",
"bundle:min": "GENERATE_SOURCEMAP=false kkt build --bundle --no-checkRequiredFiles --mini --no-emptyDir",
"watch": "npm run watch:types & npm run watch:ts",
"watch:ts": "tsbb watch --target react --env-name esm:dev --env-name cjs",
"watch:types": "npm run build:types -- --watch",
"build:ts": "tsbb build --target react --env-name esm --env-name cjs",
"build:types": "tsbb types --outDir lib/esm --target ESNEXT",
"build": "npm run build:ts && npm run build:types && npm run build:types -- --outDir lib/cjs && npm run bundle && npm run build:css && npm run bundle:min",
"build:css": "compile-less -d src -o lib/esm",
"test": "tsbb test",
"coverage": "tsbb test --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/uiw.git"
},
"files": [
"lib",
"src",
"dist"
],
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,ts,tsx}"
]
},
"keywords": [
"design",
"uiw",
"uiw-react",
"react.js",
"react",
"react-component",
"component",
"components",
"ui",
"uikit",
"react-ui",
"framework",
"frontend"
],
"peerDependencies": {
"react": ">=16.7.0",
"react-dom": ">=16.7.0"
},
"dependencies": {
"@types/react-transition-group": "^4.2.2",
"@uiw/copy-to-clipboard": "^1.0.10",
"@uiw/formatter": "^1.2.3",
"@uiw/icons": "^2.3.0",
"classnames": "^2.2.6",
"react-transition-group": "^4.3.0"
},
"devDependencies": {
"@kkt/loader-less": "^1.0.3",
"@kkt/plugin-less": "^1.2.0",
"@types/classnames": "^2.2.7",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-test-renderer": "^16.8.1",
"babel-plugin-transform-remove-imports": "^1.0.8",
"babel-plugin-transform-rename-import": "^2.3.0",
"compile-less-cli": "^1.1.5",
"enzyme": "^3.9.0",
"kkt": "^5.0.0-alpha.6",
"less": "^3.9.0",
"mini-css-extract-plugin": "^0.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"tsbb": "^1.1.2"
},
"license": "MIT",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}