-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "ng-css-to-tailwind",
"version": "0.0.3",
"description": "CLI tool that help migrate from any Angular CSS solution to Tailwind",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bun run build.mjs"
},
"bin": {
"ng-css-to-tailwind": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"bun",
"angular",
"tailwindcss",
"css",
"angular-tailwindcss",
"angular-tailwind",
"angular-css-to-tailwindcss",
"angular-css-to-tailwind"
],
"license": "MIT",
"homepage": "https://github.com/mariansimecek/ng-css-to-tailwind#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mariansimecek/ng-css-to-tailwind.git"
},
"bugs": "https://github.com/mariansimecek/ng-css-to-tailwind/issues",
"author": "Marian Simecek <[email protected]>",
"dependencies": {
"angular-html-parser": "^5.2.0",
"css-to-tailwindcss": "^1.0.5",
"glob-to-regexp": "^0.4.1",
"require-from-string": "^2.0.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/bun": "^1.0.4",
"@types/glob-to-regexp": "^0.4.4",
"@types/yargs": "^17.0.32",
"bun-types": "^1.0.25",
"typescript": "^5.3.3"
}
}