-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
137 lines (137 loc) · 4.15 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@lobehub/icons",
"version": "1.60.0",
"description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
"keywords": [
"lobehub",
"llm icons",
"llm brand logo",
"react components",
"svg icons"
],
"homepage": "https://github.com/lobehub/lobe-icons",
"bugs": {
"url": "https://github.com/lobehub/lobe-icons/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/lobehub/lobe-icons.git"
},
"license": "MIT",
"author": "LobeHub <[email protected]>",
"sideEffects": false,
"main": "es/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"es"
],
"scripts": {
"build": "npm run build:toc && father build",
"build:static": "tsx scripts/svgWorkflow/index.ts",
"build:toc": "tsx scripts/tocWorkflow/index.ts",
"build:watch": "father dev",
"ci": "npm run lint && npm run type-check",
"clean": "rm -r es lib dist coverage .dumi/tmp .eslintcache node_modules/.cache",
"dev": "dumi dev",
"docs:build": "dumi build",
"docs:build-analyze": "ANALYZE=1 dumi build",
"docs:dev": "dumi dev",
"doctor": "father doctor",
"lint": "eslint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:circular": "dpdm src/**/*.{ts,tsx} --warning false --tree false --exit-code circular:1 -T true",
"lint:md": "remark . --quiet --frail --output",
"lint:style": "stylelint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix",
"prepack": "clean-package",
"postpack": "clean-package restore",
"prepare": "husky && npm run setup",
"prepublishOnly": "npm run build",
"prettier": "prettier -c --write --no-error-on-unmatched-pattern \"**/**\"",
"pull": "git pull",
"release": "semantic-release",
"release:static": "multi-semantic-release",
"setup": "dumi setup",
"start": "npm run dev",
"sync:cnpm": "cnpm sync @lobehub/icons-static-svg @lobehub/icons-static-png @lobehub/icons-static-webp",
"sync:md": "npm run build:toc && tsx scripts/readmeWorkflow/index.ts",
"test": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"test:update": "vitest -u",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"prettier --write",
"stylelint --fix",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"stylelint --fix",
"eslint --fix"
]
},
"devDependencies": {
"@babel/runtime": "^7.26.0",
"@commitlint/cli": "^18.6.1",
"@lobehub/lint": "^1.24.4",
"@testing-library/react": "^14.3.1",
"@types/lodash-es": "^4.17.12",
"@types/pangu": "^4.0.2",
"@types/query-string": "^6.3.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitest/coverage-v8": "~1.2.2",
"babel-plugin-antd-style": "^1.0.4",
"commitlint": "^18.6.1",
"concurrently": "^8.2.2",
"consola": "^3.3.3",
"cross-env": "^7.0.3",
"dpdm": "^3.14.0",
"dumi": "^2.4.17",
"dumi-theme-lobehub": "^1.11.0",
"eslint": "^8.57.1",
"father": "^4.5.1",
"glob": "^11.0.0",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"jsdom": "^23.2.0",
"lint-staged": "^15.3.0",
"lodash-es": "^4.17.21",
"markdown-table": "^3.0.4",
"multi-semantic-release": "^3.0.2",
"p-map": "^7.0.3",
"prettier": "^3.4.2",
"remark": "^14.0.3",
"remark-cli": "^11.0.0",
"semantic-release": "^21.1.2",
"sharp": "^0.33.5",
"stylelint": "^15.11.0",
"svgo-browser": "^1.3.8",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "~1.2.2"
},
"peerDependencies": {
"@babel/runtime": "^7.0.0",
"@lobehub/ui": "^1.160.0",
"antd": "^5.22.0",
"antd-style": "^3.7.0",
"lucide-react": "^0.469.0",
"polished": "^4.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-layout-kit": "^1.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}