-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "tailwindcss-px-to-viewport",
"type": "module",
"version": "0.1.4",
"description": "use tailwindcss px to vw or vh",
"author": "the-lemonboy",
"license": "MIT",
"homepage": "https://github.com/the-lemonboy/tailwindcss-px-to-viewport",
"repository": {
"type": "git",
"url": "https://github.com/the-lemonboy/tailwindcss-px-to-viewport"
},
"keywords": [],
"main": "src/index.js",
"files": [
"README.md",
"src/"
],
"scripts": {
"cssServe": "npx tailwindcss -i ./playground/input.css -o ./playground/output.css --watch",
"serve": "http-server ./playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@antfu/eslint-config": "^4.2.0",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"eslint": "^9.20.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"tailwindcss": "3",
"vitest": "^3.1.4"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --cache --fix",
"git add"
]
}
}