-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "@anny.co/tailwindcss-presets",
"version": "4.1.1",
"description": "NodeJS package for bundling and versioning tailwindcss config files.",
"main": "index.js",
"repository": "[email protected]:anny-co/tailwindcss-presets.git",
"author": {
"name": "Alexander Bartolomey",
"email": "[email protected]",
"url": "https://anny.co"
},
"bugs": {
"url": "[email protected]:anny-co/tailwindcss-presets.git",
"email": "[email protected]"
},
"types": "./tailwindcss-presets.d.ts",
"scripts": {
"postversion": "git push --tags && yarn publish . --new-version $npm_package_version && git push"
},
"license": "MIT",
"private": false,
"publishConfig": {
"registry": "https://gitlab.com/api/v4/projects/25840525/packages/npm/",
"access": "restricted"
},
"devDependencies": {
"autoprefixer": "^10",
"eslint": "^8",
"postcss": "^8"
},
"peerDependencies": {
"tailwindcss": "^3"
},
"files": [
"index.js",
"base.js",
"fades.js",
"transform.js",
"colors.js",
"theming.js",
"tailwindcss-presets.d.ts"
],
"dependencies": {
"tailwindcss": "^3"
}
}