-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
59 lines (59 loc) · 1.3 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
{
"name": "tw-to-css",
"version": "0.0.12",
"description": "Tailwindcss Inline CSS",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"unpkg": "dist/cdn.min.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"browser": "./dist/cdn.min.js"
}
},
"files": [
"index.d.ts",
"dist/*"
],
"scripts": {
"build": "tsx src/build.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinicoder/tw-to-css.git"
},
"keywords": [
"tailwind",
"tailwindcss"
],
"author": "Vinicius de Moraes ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinicoder/tw-to-css/issues"
},
"dependencies": {
"postcss": "8.4.31",
"postcss-css-variables": "0.18.0",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@types/node": "18.11.18",
"@types/postcss-css-variables": "0.18.0",
"@types/react": "18.0.28",
"@types/tailwindcss": "3.1.0",
"esbuild": "0.15.18",
"tsx": "3.12.2",
"typescript": "4.9.4"
},
"homepage": "https://github.com/vinicoder/tw-to-css#readme",
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"type": "module"
}