-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.76 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
{
"name": "llmicons",
"version": "1.0.1",
"description": "LLM Icons - Icon collection for language models",
"author": "",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/fn-a/llmicons",
"bugs": "https://github.com/fn-a/llmicons/issues",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"import": "./index.mjs"
},
"./lobe": {
"types": "./icons/lobe/index.d.ts",
"require": "./icons/lobe/index.js",
"import": "./icons/lobe/index.mjs"
},
"./lobe/*": "./icons/lobe/*",
"./mdev": {
"types": "./icons/mdev/index.d.ts",
"require": "./icons/mdev/index.js",
"import": "./icons/mdev/index.mjs"
},
"./mdev/*": "./icons/mdev/*"
},
"files": [
"icons/",
"build.ts"
],
"scripts": {
"build": "tsx build.ts",
"build:lobe": "tsx build.ts lobe",
"build:mdev": "tsx build.ts mdev",
"pullup": "git submodule update --remote --recursive repos/models.dev repos/lobe-icons",
"pullup:lobe": "git submodule update --remote --recursive repos/lobe-icons",
"pullup:mdev": "git submodule update --remote --recursive repos/models.dev",
"format": "prettier --write './*.{ts,js}' './board/**/*.{ts,js,css,json}'",
"chain": "pnpm run pullup && pnpm run build",
"board": "pnpm -F @llmicons/board run dev"
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"printWidth": 100,
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
},
"dependencies": {
"@iconify/tools": "^5.0.11"
},
"devDependencies": {
"@iconify/types": "^2.0.0",
"@types/node": "^25.7.0",
"prettier": "^3.8.3",
"tsx": "^4.7.0",
"typescript": "^6.0.3"
}
}