-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "twify",
"version": "0.5.0",
"description": "A Tool to Setup TailwindCSS in your Project with a Single Command",
"bin": {
"twify": "dist/main.js"
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"dev": "npm run build && npm start",
"start": "node dist/main.js",
"build": "microbundle -i src/main.ts -o dist/main.js --no-pkg-main --target=node -f modern --compress --no-sourcemap --tsconfig tsconfig.json --no-generateTypes",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage"
},
"keywords": [
"tailwindcss",
"tailwind",
"nuxt tailwind",
"nextjs tailwind",
"remix tailwind",
"svelte tailwind"
],
"author": {
"email": "[email protected]",
"name": "Kazi Ahmed",
"url": "https://github.com/tzsk"
},
"repository": {
"url": "https://github.com/tzsk/twify"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.0.1",
"commander": "^10.0.0",
"enquirer": "^2.3.6",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"gradient-string": "^2.0.1",
"jscodeshift": "^0.15.0",
"ora": "^6.1.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.0.1",
"@types/gradient-string": "^1.1.2",
"@types/jscodeshift": "^0.11.5",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@vitest/coverage-istanbul": "^0.33.0",
"esbuild": "^0.19.2",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^5.0.0",
"microbundle": "^0.15.0",
"prettier": "^3.0.3",
"typescript": "^4.6.4",
"vitest": "^0.33.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}