-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "create-react-interface",
"version": "1.3.0",
"description": "CLI for creating React UI Libraries",
"bin": {
"create-react-interface": "./src/cli/index.js"
},
"publishConfig": {
"@0xATHERIS:registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "tsc ./src/cli/index.ts",
"dev": "npm run build && node ./src/cli/index.js",
"release": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xATHERIS/create-react-interface.git"
},
"keywords": [
"ui-library",
"react",
"ui",
"components"
],
"author": "0xATHERIS",
"license": "ISC",
"bugs": {
"url": "https://github.com/0xATHERIS/create-react-interface/issues"
},
"homepage": "https://github.com/0xATHERIS/create-react-interface#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.16.3"
},
"dependencies": {
"fs-extra": "^11.1.1",
"inquirer": "^8.2.5",
"path": "^0.12.7"
}
}