-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.95 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.95 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
{
"name": "@egoist/tailwindcss-icons",
"type": "module",
"version": "1.9.2",
"packageManager": "[email protected]",
"description": "Icons utility for TailwindCSS",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hyoban/tailwindcss-icons.git"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"main": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"prepare": "simple-git-hooks",
"gen-types": "node ./gen-types.mjs && eslint --fix ./types.ts",
"build": "pnpm gen-types && tsdown",
"prepublishOnly": "pnpm run build",
"test": "vitest run",
"lint": "eslint --max-warnings 0",
"lint:fix": "eslint --max-warnings 0 --fix",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@iconify/tools": "^5.0.2",
"tailwindcss": "*"
},
"peerDependenciesMeta": {
"@iconify/tools": {
"optional": true
}
},
"dependencies": {
"@iconify/types": "^2.0.0",
"@iconify/utils": "^3.1.0"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@iconify-json/heroicons": "^1.2.3",
"@iconify/json": "^2.2.433",
"@iconify/tools": "^5.0.2",
"@types/node": "^25.1.0",
"eslint": "^9.39.2",
"eslint-config-hyoban": "6.0.0-beta.3",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"publint": "^0.3.17",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^3.4.19",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}