-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.98 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "tailwind-variant-selectors",
"version": "0.0.0-development",
"description": "Use your Tailwind CSS custom variants in CSS.",
"keywords": [
"postcss",
"vite",
"css",
"plugin",
"tailwind",
"variant",
"custom-variant",
"selectors",
"custom-selectors"
],
"repository": "emmbm/tailwind-variant-selectors",
"license": "MIT",
"author": "Emmanuel Beaudry Marchand <emmbema@gmail.com>",
"type": "module",
"exports": {
"./package.json": "./package.json",
"./postcss": {
"import": "./dist/postcss/index.js",
"types": "./dist/postcss/index.d.ts"
},
"./vite": {
"import": "./dist/vite/index.js",
"types": "./dist/vite/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run format && tsc",
"dev": "vite dev",
"format": "npm run lint:fix && npm run prettier:fix",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"test": "vitest",
"test:update": "vitest -u"
},
"devDependencies": {
"@tailwindcss/postcss": "4.0.0-beta.3",
"@tailwindcss/vite": "4.0.0-beta.3",
"@types/node": "^22.10.5",
"@vitest/ui": "^2.1.8",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-tailwindcss": "^0.6.9",
"semantic-release": "^24.2.1",
"tailwindcss": "4.0.0-beta.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "^5.4.11",
"vitest": "^2.1.8"
},
"peerDependencies": {
"postcss": "^8.4.27",
"tailwindcss": "^4.0.0",
"vite": ">=4"
},
"peerDependenciesMeta": {
"postcss": {
"optional": true
},
"vite": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
}
}