-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "create-react-ts-lib",
"version": "1.0.2",
"description": "cli tool to create react component library with rollup and typescript",
"main": "index.js",
"author": "Mahmoud Ibrahiam",
"license": "MIT",
"private": false,
"type": "module",
"bin": {
"create-react-ts-lib": "./index.js",
"crtl": "./index.js"
},
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.1.0",
"@types/prompts": "^2.4.4",
"rollup": "^3.21.5",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"prepublishOnly": "yarn build"
},
"dependencies": {
"execa": "^7.1.1",
"fs-extra": "^11.1.1",
"kolorist": "^1.8.0",
"ora": "^6.3.0",
"prompts": "^2.4.2"
},
"keywords": [
"react",
"component",
"react-component",
"react-lib",
"react-library",
"react-ts",
"typescript",
"rollup",
"react-typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/remahmoud/create-react-ts-lib"
},
"homepage": "https://github.com/remahmoud/create-react-ts-lib#readme"
}