-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"name": "@vendeka/tailwind-config-php",
"version": "2.1.3",
"description": "Use your TailwindCSS config in PHP.",
"dependencies": {
"esbuild": "^0.27.0",
"tailwindcss": "3.x",
"yargs": "^18.0.0"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/yargs": "^17.0.24",
"jest": "^30.2.0",
"ts-jest": "^29.3.1",
"typescript": "^5.8.2"
},
"scripts": {
"build": "tsc --build",
"watch": "tsc --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vendeka-nl/tailwind-config-php.git"
},
"keywords": [
"tailwind",
"tailwindcss",
"config",
"php"
],
"author": "Vendeka",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/vendeka-nl/tailwind-config-php/issues"
},
"homepage": "https://github.com/vendeka-nl/tailwind-config-php#readme",
"bin": {
"tailwindphp": "dist/cli.js",
"tw2php": "dist/cli.js"
},
"files": [
"dist/types",
"dist/utils",
"dist/cli.d.ts",
"dist/cli.js"
]
}