-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.3 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@designbycode/tailwindcss-text-shadow",
"version": "2.2.1",
"description": "Tailwindcss utilities for text stroke",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DesignByCode/tailwindcss-text-shadow.git"
},
"bugs": {
"url": "https://github.com/DesignByCode/tailwindcss-text-shadow/issues"
},
"homepage": "https://github.com/DesignByCode/tailwindcss-text-shadow#readme",
"keywords": [
"front-end",
"frontend",
"css",
"tailwindcss",
"plugin",
"tailwindcss-plugin",
"tailwindcss text-shadow",
"text-shadow",
"designbycode"
],
"type": "module",
"types": "dist/",
"main": "./dist/index.umd.cjs",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"module": "./dist/index.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --declaration && vite build",
"clean": "rd /s /q dist .cache>nul 2>&1|echo.>nul",
"dev": "pnpm build --watch",
"prepublishOnly": "pnpm build",
"release": "release-it",
"test": "vitest --coverage"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"git add"
]
},
"authors": [
{
"name": "Claude Myburgh",
"email": "claude@designbycode.co.za",
"url": "https://designbycode.co.za"
}
],
"browserslist": [
"> .5% or last 2 versions"
],
"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": {
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^8.0.1",
"@release-it/keep-a-changelog": "^5.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.3",
"@types/node": "^22.5.4",
"@vitest/coverage-v8": "^2.0.5",
"autoprefixer": "^10.4.20",
"husky": "^9.1.5",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"semantic-release": "^24.1.0",
"tailwindcss": "^3.4.10",
"terser": "^5.32.0",
"typescript": "^5.6.2",
"vite": "^5.4.3",
"vite-plugin-dts": "^4.2.1",
"vitest": "^2.0.5"
}
}