-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.88 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
{
"name": "@designbycode/tailwindcss-text-stroke",
"version": "1.3.0",
"description": "Tailwindcss utilities for text stroke",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DesignByCode/tailwindcss-text-stroke.git"
},
"bugs": {
"url": "https://github.com/DesignByCode/tailwindcss-text-stroke/issues"
},
"homepage": "https://github.com/DesignByCode/tailwindcss-text-stroke#readme",
"keywords": [
"front-end",
"frontend",
"css",
"tailwindcss",
"plugin",
"tailwindcss-plugin",
"tailwindcss text-stroke",
"mask image",
"designbycode"
],
"type": "module",
"main": "./dist/index.umd.cjs",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"types": "dist/",
"module": "./dist/index.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && vite build",
"dev": "pnpm build --watch",
"clean": "rd /s /q esm dist lib build .cache>nul 2>&1|echo.>nul",
"prebuild": "pnpm clean",
"postbuild": "tsc --emitDeclarationOnly",
"prepublishOnly": "pnpm build"
},
"authors": [
{
"name": "Claude Myburgh",
"email": "claude@designbycode.co.za",
"url": "https://designbycode.co.za"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/DesignByCode/tailwindcss-text-stroke/blob/main/LICENCE"
}
],
"peerDependencies": {
"tailwindcss": ">=3.0.0 || >=3.0.0-alpha.1"
},
"devDependencies": {
"@types/node": "^20.4.8",
"autoprefixer": "^10.4.14",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.3",
"vitest": "^2.1.5",
"terser": "^5.32.0",
"typescript": "^5.6.2",
"vite": "^5.4.3",
"vite-plugin-dts": "^4.2.1"
}
}