-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.21 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
{
"name": "@statespace-tech/statespace",
"version": "0.1.1",
"description": "CLI, SDK, and MCP server for searching llms.txt documentation sites",
"type": "module",
"license": "MIT",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/sdk.js",
"types": "./dist/sdk.d.ts"
}
},
"bin": {
"statespace": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "npm run format:check && npm run build && node --test test/integration.js",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18"
},
"keywords": [
"llms.txt",
"search",
"documentation",
"mcp",
"ai",
"cli",
"rag"
],
"repository": {
"type": "git",
"url": "https://github.com/statespace-tech/statespace.git"
},
"homepage": "https://statespace.com",
"bugs": {
"url": "https://github.com/statespace-tech/statespace/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"prettier": "^3.8.3",
"typescript": "^5.0.0"
}
}