-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 884 Bytes
/
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
{
"name": "tailwindcss-highlights",
"version": "1.0.0",
"description": "A tailwindcss plugin to add highlights to your text",
"repository": "https://github.com/jln13x/tailwindcss-highlights",
"keywords": [
"plugin",
"tailwind",
"tailwindcss",
"tailwindcss-plugin",
"highlights",
"marks",
"brushes"
],
"author": "Julian Hubatsch",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/jln13x/tailwindcss-highlights/issues"
},
"homepage": "https://github.com/jln13x/tailwindcss-highlights#readme",
"scripts": {
"build": "tsc",
"publish": "npm run build && npm publish",
"optimize": "svgo -f ./highlights -o ./highlights"
},
"peerDependencies": {
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"svgo": "^2.8.0",
"typescript": "^4.8.3"
}
}