-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.85 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.85 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
{
"name": "@julr/unocss-preset-forms",
"type": "module",
"version": "2.0.0",
"packageManager": "pnpm@10.11.0",
"description": "📋 Port of @tailwindcss/forms for UnoCSS.",
"author": "Julien Ripouteau <julien@ripouteau.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/Julien-R44",
"homepage": "https://github.com/Julien-R44/unocss-preset-forms#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Julien-R44/unocss-preset-forms.git"
},
"bugs": {
"url": "https://github.com/Julien-R44/unocss-preset-forms/issues"
},
"keywords": [
"unocss",
"@tailwind/forms",
"tailwind forms",
"preset uno"
],
"publishConfig": {
"access": "public",
"tag": "latest"
},
"main": "./dist/index.mjs",
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "pnpm build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "tsx src/index.ts",
"test": "pnpm lint && pnpm typecheck && pnpm quick:test",
"quick:test": "pnpm tsx bin/test.ts",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"unocss": ">=0.56.0 < 101"
},
"devDependencies": {
"@japa/assert": "^4.0.1",
"@japa/runner": "^4.2.0",
"@japa/snapshot": "^2.0.8",
"@julr/tooling-configs": "^4.0.0",
"@types/node": "^22.15.19",
"@unocss/preset-mini": "^66.1.2",
"bumpp": "^10.1.1",
"eslint": "^9.27.0",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"unbuild": "^3.5.0",
"unocss": "^66.1.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"openapi-types",
"@babel/core",
"@japa/core",
"vite"
]
}
},
"prettier": "@julr/tooling-configs/prettier"
}