-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 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
{
"name": "@leedomjs/tailwindcss-preset-monorepo",
"type": "module",
"version": "0.8.0",
"private": true,
"packageManager": "pnpm@9.10.0",
"description": "tailwindcss presets",
"keywords": [
"tailwind",
"tailwindcss",
"presets",
"theme",
"color",
"mini program"
],
"author": "Leedom",
"license": "MIT",
"homepage": "https://github.com/leedomjs/tailwindcss-preset#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/leedomjs/tailwindcss-preset.git"
},
"bugs": {
"url": "https://github.com/leedomjs/tailwindcss-preset/issues"
},
"engines": {
"node": "^18.12.0 || ^20.9.0 || >=22.0"
},
"scripts": {
"test": "vitest",
"lint": "eslint .",
"build:css": "tailwindcss -i fixtures/styles/tailwind.css -o fixtures/styles/output.css -w",
"build": "pnpm -r build",
"release": "pnpm build && bumpp -r && pnpm -r publish --access public",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"packages/**/*.ts": "eslint --fix"
},
"devDependencies": {
"@leedomjs/eslint-config-ts": "catalog:",
"@leedomjs/tailwindcss-preset": "workspace:*",
"bumpp": "catalog:",
"eslint": "catalog:",
"lint-staged": "catalog:",
"simple-git-hooks": "catalog:",
"tailwindcss": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vitest": "catalog:"
}
}