-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "tailwind-to-dart",
"version": "0.1.1",
"description": "Convert your tailwind config to dart code for your flutter apps",
"type": "module",
"main": "dist/main.mjs",
"packageManager": "pnpm@9.0.6",
"repository": {
"url": "https://github.com/joshmossas/tailwind-to-dart"
},
"scripts": {
"build": "unbuild",
"lint": "eslint ./src",
"format": "prettier --write ./src",
"test": "vitest run",
"test:watch": "vitest",
"generate-example": "pnpm run build && ./dist/cli.mjs --config ./example/tailwind.config.js --output ./example/tailwind.dart --format"
},
"keywords": [
"tailwind",
"tailwindcss",
"flutter",
"dart"
],
"author": "Joshua Sosso",
"files": [
"dist",
"src"
],
"bin": {
"tailwind-to-dart": "./dist/cli.mjs"
},
"license": "MIT",
"dependencies": {
"c12": "^2.0.1",
"citty": "^0.1.6",
"consola": "^3.2.3",
"pathe": "^1.1.2",
"scule": "^1.3.0",
"tailwindcss": "^3.4.16"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-unjs": "^0.4.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-promise": "^7.2.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"unbuild": "^3.0.1",
"vite": "^6.0.3",
"vitest": "^2.1.8"
}
}