-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 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
{
"name": "@wacky-idea/react-components",
"version": "1.0.0",
"author": "Aomd <g00665@163.com>",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"umd:main": "dist/umd/index.js",
"typings": "src/index.ts",
"homepage": "https://github.com/wacky-idea/ReactComponents#readme",
"description": "react 常用组件",
"directories": {
"src": "src",
"test": "test"
},
"files": [
"dist",
"src",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wacky-idea/ReactComponents.git"
},
"keywords": [
"react",
"components",
"utils"
],
"bugs": {
"url": "https://github.com/wacky-idea/ReactComponents/issues"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"test": "npx jest"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"@rollup/plugin-typescript": "^11.1.6",
"less": "^4.2.0",
"react": "^18",
"react-dom": "^18",
"rollup": "^3.25.1",
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^29",
"jest": "^29",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}