-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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": "css2tailwind",
"packageManager": "pnpm@9.5.0",
"version": "1.0.12",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup --dts",
"test-cli": "node ./test-cli/test.mjs",
"test": "vitest",
"release": "bumpp -r",
"prepublishOnly": "npm run build"
},
"author": "hunghg255",
"devDependencies": {
"@types/node": "^18.15.13",
"bumpp": "^9.2.0",
"husky": "^8.0.3",
"terser": "^5.17.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"unbuild": "^1.2.1",
"vite": "^4.3.8",
"vitest": "^0.31.1"
},
"keywords": [
"CSS",
"Tailwindcss",
"CSS to Tailwindcss"
],
"homepage": "https://github.com/hunghg255/css2tailwind",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/css2tailwind"
},
"bugs": {
"url": "https://github.com/hunghg255/css2tailwind/issues"
}
}