-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "@asyarb/tailwind-capsize",
"version": "1.0.0",
"description": "Tailwind to create capsize typography utilities.",
"repository": "https://github.com/asyarb/tailwind-capsize",
"author": "Anthony Yarbrough <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vitest",
"build": "NODE_ENV=production tsup",
"test": "vitest run",
"preview": "pnpm build && vite serve ./tests/fixtures",
"prepublishOnly": "pnpm run build",
"changelog": "pnpm standard-version"
},
"dependencies": {
"common-tags": "^1.8.2",
"zod": "^3.18.0"
},
"peerDependencies": {
"tailwindcss": "^3"
},
"devDependencies": {
"@capsizecss/metrics": "^0.3.0",
"@types/common-tags": "^1.8.1",
"@types/node": "^18.7.9",
"autoprefixer": "^10.4.8",
"css2json": "^1.1.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"tailwindcss": "^3.1.8",
"tsup": "6.2.2",
"typescript": "4.7.4",
"vite": "^3.0.9",
"vitest": "0.22.1"
}
}