-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1021 Bytes
/
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
{
"name": "@bk/sum",
"version": "1.0.3",
"description": "A react component that sum two numbers.",
"repository": "[email protected]:Beking0912/react-typescript-rollup-starter.git",
"main": "lib/bundle.cjs.js",
"module": "lib/bundle.esm.js",
"browser": "lib/bundle.browser.js",
"types": "types/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c",
"build:types": "tsc",
"prepare": "husky install"
},
"author": "Biqing Su",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/styled-components": "^5.1.26",
"husky": "^8.0.3",
"jest": "^29.4.3",
"react": "^18.2.0",
"rollup": "^3.15.0",
"styled-components": "^5.3.6",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"tslib": "^2.5.0"
}
}