-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 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
59
60
61
62
63
64
65
{
"name": "twinit",
"version": "0.0.0-development",
"description": "A CLI for setting up tailwindcss on your framework of choice",
"type": "module",
"bin": {
"twinit": "dist/main.js"
},
"scripts": {
"build": "rimraf dist && tsc",
"fmt": "prettier --write ./**/*.{js,ts}",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"check:fmt": "prettier --check ./**/*.{js,ts}",
"check:types": "tsc --pretty --noEmit",
"prepare": "husky install",
"check:all": "pnpm check:fmt && pnpm check:types && pnpm lint",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/ndaba1/twinit.git"
},
"keywords": [
"tailwindcss",
"tailwind",
"twinit",
"tw"
],
"author": "Victor Ndaba <vndabam@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ndaba1/twinit/issues"
},
"homepage": "https://github.com/ndaba1/twinit#readme",
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.1.0",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.0.0",
"@types/inquirer": "^9.0.1",
"@types/node": "^20.2.4",
"@types/semver": "^7.3.12",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.1",
"prettier": "^3.0.2",
"rimraf": "^5.0.0",
"semantic-release": "^23.0.8",
"typescript": "^5.0.2"
},
"dependencies": {
"chalk": "^5.0.1",
"commander": "^11.1.0",
"enquirer": "^2.3.6",
"execa": "^8.0.1",
"fs-extra": "^11.1.0",
"glob": "^10.2.2",
"inquirer": "^9.1.1",
"listr2": "8.0.1",
"semver": "^7.3.7"
}
}