-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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
{
"name": "@stbr/solana-glossary",
"version": "1.1.0",
"description": "The most comprehensive Solana ecosystem glossary — SDK, MCP server, and AI skill. 1059 terms, 14 categories, depth ratings, tags, and i18n.",
"main": "dist/src/index.js",
"module": "dist/src/index.mjs",
"types": "dist/src/index.d.ts",
"bin": {
"solana-glossary": "./dist/mcp/bin.js"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.mjs",
"require": "./dist/src/index.js"
},
"./i18n": {
"types": "./dist/src/i18n.d.ts",
"import": "./dist/src/i18n.mjs",
"require": "./dist/src/i18n.js"
},
"./data/*": "./data/*"
},
"files": [
"dist",
"data",
"skills",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts src/i18n.ts mcp/server.ts mcp/bin.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"lint": "tsc --noEmit",
"validate": "node scripts/validate.js",
"stats": "node -e \"const g = require('./dist/index.js'); console.log('Total terms:', g.allTerms.length); console.log('Categories:', [...new Set(g.allTerms.map(t => t.category))].length); console.log('Tags:', g.getAllTags().length)\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^3.2.0"
},
"keywords": [
"solana",
"glossary",
"mcp",
"web3",
"blockchain",
"terminology",
"dictionary",
"i18n",
"ai-tools"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solanabr/solana-glossary"
}
}