-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "tailwind-unit-replace",
"version": "0.3.0",
"description": "Helpers to replace Tailwind's default rem unit with anything like px or em.",
"license": "MIT",
"type": "commonjs",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"tailwind",
"tailwindcss",
"nodejs"
],
"repository": {
"type": "git",
"url": "https://github.com/huygn/tailwind-unit-replace"
},
"author": {
"name": "Huy Giang",
"email": "gnhuy91@gmail.com",
"url": "https://huygn.dev"
},
"engines": {
"node": ">=12.10"
},
"scripts": {
"build": "rollup -c",
"types": "tsc --noEmit",
"test": "uvu -r esbuild-register src \".test.ts$\"",
"prepublish": "npm run test && npm run build"
},
"dependencies": {},
"peerDependencies": {
"tailwindcss": ">=1.9"
},
"devDependencies": {
"@types/tailwindcss": "^2.2.1",
"esbuild": "^0.12.22",
"esbuild-register": "^3.0.0",
"rollup": "^2.56.2",
"typescript": "^4.3.5",
"uvu": "^0.5.1"
}
}