This repository was archived by the owner on Apr 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "@quibble-dev/tailwindcss-inner-border",
"version": "0.0.4",
"description": "Tailwindcss plugin that provides utilities for creating inner borders.",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"changeset": "changeset",
"release": "npm run release:version && npm run release:publish",
"release:version": "changeset version",
"release:publish": "npm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/quibble-dev/tailwindcss-inner-border.git"
},
"keywords": [
"tailwindcss",
"tailwind",
"plugin",
"inner-border",
"quibble"
],
"author": "moonlitgrace <moonlitgrace.gaia@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/quibble-dev/tailwindcss-inner-border/issues"
},
"homepage": "https://github.com/quibble-dev/tailwindcss-inner-border#readme",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"tailwindcss": "^4.0.12"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}