-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
66 lines (66 loc) · 2.03 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
{
"name": "tw-colors",
"version": "3.3.2",
"author": {
"name": "Laurent Blondy",
"email": "[email protected]",
"url": "https://github.com/L-Blondy"
},
"description": "Tailwind plugin for switching color theme with just one className",
"keywords": [
"tailwind",
"tailwindcss",
"color",
"colors",
"theme",
"themes",
"dark"
],
"main": "dist/lib/index.js",
"module": "dist/lib/index.mjs",
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "tsup",
"postpublish": "git add . && git commit -a && git tag v$npm_package_version && git push --tags && git push",
"dev": "npm run build && vitest",
"test": "npm run build && vitest run",
"visual": "npm run build && vite",
"release:pre:beta": "git pull && node scripts/check-beta-version.js && vitest run && npm run build",
"release:pre:stable": "git pull && node scripts/check-stable-version.js && vitest run && npm run build",
"release:stable": "npm run release:pre:stable && npm publish && npm run release:post",
"release:beta": "npm run release:pre:beta && npm publish --tag beta && npm run release:post",
"release:post": "git add . && git commit -a && git tag v$npm_package_version && git push --tags && git push"
},
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"peerDependencies": {
"tailwindcss": ">=3.0.0"
},
"dependencies": {
"color": "^4.2.3",
"flat": "^5.0.2",
"lodash.foreach": "^4.5.0"
},
"devDependencies": {
"@types/color": "^3.0.3",
"@types/flat": "^5.0.2",
"@types/lodash.foreach": "^4.5.7",
"@types/node": "^18.11.9",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"prettier": "^2.7.1",
"tsup": "^6.7.0",
"typescript": ">=4.0.0",
"vite": "^4.0.4",
"vitest": "^0.28.3"
},
"repository": {
"type": "git",
"url": "https://github.com/L-Blondy/tw-colors"
},
"license": "MIT"
}