-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 990 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
38
39
40
41
42
{
"name": "bix-ui",
"version": "1.2.0",
"type": "module",
"description": "The Bix library of UI Components",
"main": "index.js",
"bin": {
"bix": "./dist/cli/index.js"
},
"scripts": {
"build": "rimraf ./dist && tsc && npm run postbuild",
"postbuild": "sh postbuild.sh",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node scripts/setPermissions.js"
},
"keywords": [
"bix",
"ui",
"components",
"react",
"tailwindcss"
],
"author": "Miguel Cassimiro",
"license": "ISC",
"dependencies": {
"classnames": "^2.5.1",
"commander": "^12.0.0",
"inquirer": "^9.2.22",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"rimraf": "^5.0.5",
"tailwindcss": "^2.2.7",
"typescript": "^4.1.2"
}
}