-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "@ui-devtools/tailwind-utils",
"version": "0.0.2",
"description": "Utilities to parse and create tailwindcss class names",
"main": "dist/index.js",
"author": "siddharthkp",
"license": "MIT",
"keywords": [
"tailwindcss",
"parser",
"utils"
],
"scripts": {
"build": "tsc",
"test": "npm run test:unit && npm run test:build",
"test:build": "npm run build -- --noEmit",
"test:unit": "FORCE_COLOR=3 vitest parse classname --reporter=tests/custom-reporter",
"test:generated": "vitest generated --no-isolate"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@vitest/coverage-c8": "^0.24.0",
"jest": "^29.2.1",
"lodash.camelcase": "^4.3.0",
"lodash.uniqby": "^4.7.0",
"tailwindcss": "^3.1.8",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vitest": "^0.24.0"
},
"peerDependencies": {
"tailwindcss": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ui-devtools/tailwind-utils.git"
},
"homepage": "https://github.com/ui-devtools/tailwind-utils#readme",
"bugs": {
"url": "https://github.com/ui-devtools/tailwind-utils/issues"
}
}