-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@designbycode/tailwindcss-mask-image",
"version": "2.0.2",
"description": "Tailwindcss utilities for text stroke",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DesignByCode/tailwindcss-mask-image.git"
},
"bugs": {
"url": "https://github.com/DesignByCode/tailwindcss-mask-image/issues"
},
"homepage": "https://github.com/DesignByCode/tailwindcss-mask-image#readme",
"authors": [
{
"name": "Claude Myburgh",
"email": "claude@designbycode.co.za",
"url": "https://designbycode.co.za"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/DesignByCode/tailwindcss-mask-image/blob/main/LICENCE"
}
],
"keywords": [
"front-end",
"frontend",
"css",
"tailwindcss",
"gradient mask",
"plugin",
"tailwindcss-plugin",
"tailwindcss mask-image",
"mask image",
"designbycode"
],
"type": "module",
"files": [
"dist",
"utils"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && vite build",
"clean": "rd /s /q dist .cache>nul 2>&1|echo.>nul",
"dev": "pnpm build --watch",
"postbuild": "tsc --emitDeclarationOnly",
"prepublishOnly": "pnpm build"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"git add"
]
},
"browserslist": [
"> .5% or last 2 versions"
],
"peerDependencies": {
"tailwindcss": ">=3.0.0 || >=3.0.0-alpha.1"
},
"devDependencies": {
"@types/node": "^20.4.8",
"autoprefixer": "^10.4.14",
"husky": "^8.0.3",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.3",
"terser": "^5.19.2",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.1"
}
}