forked from misbahansori/vite-plugin-tailwind-obfuscate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "vite-plugin-tailwind-obfuscate",
"version": "0.0.5",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm",
"dev": "tsup src/index.ts --format cjs,esm --watch",
"vue:dev": "cd example/vue && vite",
"react:dev": "cd example/react && vite",
"svelte:dev": "cd example/svelte && vite",
"release": "npm run build && bumpp --commit --tag --push && npm publish",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misbahansori/tailwind-obfuscate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/misbahansori/tailwind-obfuscate/issues"
},
"homepage": "https://github.com/misbahansori/tailwind-obfuscate#readme",
"dependencies": {
"randomstring": "^1.2.2"
},
"devDependencies": {
"@types/randomstring": "^1.1.8",
"bumpp": "^7.1.1",
"rollup": "^2.75.6",
"tsup": "^6.1.0",
"vite": "^2.9.10",
"vitest": "^0.14.1"
}
}