better-icons 1.0.2 → 1.0.3-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +77 -69
- package/dist/index.js +146 -143
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "better-icons",
|
|
3
|
-
"version": "1.0.2",
|
|
3
|
+
"version": "1.0.3-beta.2",
|
|
4
4
|
"description": "MCP server for searching and retrieving icons from 200+ icon libraries powered by Iconify",
|
|
5
5
|
"author": "bekacru",
|
|
6
6
|
"license": "MIT",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"build": "bun build ./src/index.ts --outdir dist --target node --minify",
|
|
17
17
|
"dev": "bun run src/index.ts",
|
|
18
18
|
"test": "bun test",
|
|
19
|
-
"prepublishOnly": "bun run build"
|
|
19
|
+
"prepublishOnly": "bun run build",
|
|
20
|
+
"release": "bumpp --commit --push --tag"
|
|
20
21
|
},
|
|
21
22
|
"keywords": [
|
|
22
23
|
"mcp",
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
],
|
|
31
32
|
"repository": {
|
|
32
33
|
"type": "git",
|
|
33
|
-
"url": "https://github.com/
|
|
34
|
+
"url": "https://github.com/better-auth/better-icons"
|
|
34
35
|
},
|
|
35
36
|
"dependencies": {
|
|
36
37
|
"@clack/prompts": "^0.7.0",
|
|
@@ -39,7 +40,8 @@
|
|
|
39
40
|
"commander": "^12.0.0"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
42
|
-
"@types/bun": "latest"
|
|
43
|
+
"@types/bun": "latest",
|
|
44
|
+
"bumpp": "^10.4.0"
|
|
43
45
|
},
|
|
44
46
|
"peerDependencies": {
|
|
45
47
|
"typescript": "^5"
|