-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.89 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.89 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
{
"name": "@designbycode/tailwindcss-stripes",
"version": "1.0.5",
"description": "Tailwindcss utilities for add stripe background to section",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DesignByCode/tailwindcss-stripes.git"
},
"bugs": {
"url": "https://github.com/DesignByCode/tailwindcss-stripes/issues"
},
"homepage": "https://github.com/DesignByCode/tailwindcss-stripes#readme",
"keywords": [
"front-end",
"frontend",
"css",
"tailwindcss",
"plugin",
"tailwindcss-plugin",
"tailwindcss stripes",
"designbycode"
],
"type": "module",
"main": "./dist/index.umd.cjs",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"module": "./dist/index.js",
"files": [
"dist",
"utils"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && vite build",
"clean": "rd /s /q dist .cache>nul 2>&1|echo.>nul",
"dev": "pnpm build --watch",
"postbuild": "tsc --emitDeclarationOnly",
"prepublishOnly": "pnpm build"
},
"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-stripes/blob/main/LICENCE"
}
],
"peerDependencies": {
"tailwindcss": ">=3.0.0 || >=3.0.0-alpha.1"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.4.9",
"autoprefixer": "^10.4.14",
"husky": "^8.0.3",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.3",
"terser": "^5.19.2",
"typescript": "^5.1.6",
"vite": "^4.4.9"
}
}