-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.62 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
{
"name": "tailwind-to-object",
"version": "0.0.24",
"description": "Convert Tailwind class names into a CSS object",
"main": "./dist/index.js",
"scripts": {
"ncu": "npx npm-check-updates -u && npm i",
"test": "npm run build && npm run unit",
"unit": "ts-node test",
"prettier": "prettier --write \"**/*.ts\"",
"build": "npm run tailwind-generate && npm run doc-generate && tsc",
"tailwind-compile": "npx tailwindcss -i ./generate/input.css -o ./generate/output.css --no-autoprefixer",
"tailwind-generate": "npm run tailwind-compile && ts-node ./generate/generateTailwindStyles.ts",
"doc-generate": "ts-node ./scripts/generateDoc.ts",
"patch": "npm run unit && npm version patch && npm run build && npm publish && git push && git push --tags",
"minor": "npm run unit && npm version minor && npm run build && npm publish && git push && git push --tags",
"BREAKING-major": "npm run unit && npm version major && npm run build && npm publish && git push && git push --tags"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/finom/tailwind-to-object.git"
},
"keywords": [
"tailwind",
"css",
"style"
],
"author": "Andrii Gubanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/finom/tailwind-to-object/issues"
},
"homepage": "https://github.com/finom/tailwind-to-object#readme",
"devDependencies": {
"postcss": "^8.4.47",
"postcss-js": "^4.0.1",
"prettier": "3.3.3",
"ts-node": "^10.9.2"
}
}