-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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
{
"name": "@vinkas/tailwindcss",
"version": "0.1.5",
"description": "Tailwind CSS plugin for Vinkas",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"test": "jest",
"build": "tsc -p .",
"version": "node -p \"require('./package.json').version\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinkashq/tailwindcss.git"
},
"author": {
"name": "Vinoth Kannan",
"email": "vinoth.kannan@vinkas.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vinkashq/tailwindcss/issues"
},
"homepage": "https://github.com/vinkashq/tailwindcss#readme",
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.13"
}
}