-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "vite-plugin-scope-tailwind",
"description": "A vite-plugin to encapsulate and scope your TailwindCSS styles to your library and prevent them affecting styles outside",
"version": "2.0.1",
"main": "./dist/cjs/index.cjs",
"types": "./dist/src/main.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest --ui",
"test:ci": "vitest run",
"prepublishOnly": "npm run build",
"cspell": "cspell \"**\"",
"prettier": "prettier -l .",
"prettier:fix": "npm run prettier -- --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dolanmiu/vite-plugin-scope-tailwind.git"
},
"bugs": {
"url": "https://github.com/dolanmiu/vite-plugin-scope-tailwind/issues"
},
"author": "Dolan Miu",
"license": "MIT",
"keywords": [
"tailwind",
"tailwindcss",
"vite",
"vite-plugin",
"vite-plugin-tailwind",
"vite-plugin-scope-tailwind",
"scope",
"encapsulate",
"library",
"css",
"styles",
"style",
"css-in-js",
"css-in-jsx"
],
"devDependencies": {
"@types/node": "^20.2.4",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"cspell": "^7.3.8",
"postcss": "^8.4.23",
"prettier": "^3.0.3",
"typescript": "^5.0.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.2",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.6"
},
"dependencies": {
"@types/uniqid": "^5.3.2",
"app-root-path": "^3.1.0",
"uniqid": "^5.4.0"
}
}