-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "prettier-plugin-typewind",
"version": "0.0.8",
"description": "Convert tailwind classes to typewind objects",
"author": "Igor Kornelli <aztecsrv@gmail.com>",
"homepage": "https://github.com/epicbytes/prettier-plugin-typewind",
"repository": {
"type": "git",
"url": "git+https://github.com/epicbytes/prettier-plugin-typewind.git"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"keywords": [
"prettier",
"plugin",
"tailwindcss",
"typewind"
],
"license": "MIT",
"private": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"build:tsc": "rimraf ./lib && tsc",
"test": "vitest --ui",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@solidjs/router": "^0.8.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@types/dlv": "^1.1.2",
"@types/node": "^18.15.11",
"@types/object-hash": "^3.0.2",
"@types/prettier": "^2.7.2",
"@types/tailwindcss": "^3.1.0",
"@vitest/coverage-c8": "^0.30.1",
"@vitest/ui": "^0.30.1",
"clear-module": "^4.1.2",
"escalade": "^3.1.1",
"jsdom": "^21.1.1",
"line-column": "^1.0.2",
"object-hash": "^3.0.0",
"prettier": "^2.8.7",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.30.1"
},
"peerDependencies": {
"prettier": "^2.0.0",
"tailwindcss": "*"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
}
}