@aishelf/service 1.0.0
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/LICENSE +10 -0
- package/README.md +280 -0
- package/dist/cli.js +3761 -0
- package/dist/server.js +3436 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aishelf/service",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "AIShelf local service for cross-platform file access",
|
|
5
|
+
"main": "dist/server.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"aishelf": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"setup": "cd ../shared && npm install && npm run build && cd ../aishelf-service && npm install",
|
|
11
|
+
"build": "npm run setup && tsup",
|
|
12
|
+
"start": "npm run build && node dist/server.js",
|
|
13
|
+
"global-install": "npm run build && npm install -g .",
|
|
14
|
+
"dev": "npm run setup && tsx src/server.ts",
|
|
15
|
+
"typecheck": "tsc --noEmit",
|
|
16
|
+
"prepublishOnly": "npm run build"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"aishelf",
|
|
20
|
+
"file-server",
|
|
21
|
+
"mcp",
|
|
22
|
+
"local-service"
|
|
23
|
+
],
|
|
24
|
+
"author": "Vedant Patil",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/Vedant2254/aishelf-ide-extension.git"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://aishelf.dev",
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"README.md"
|
|
34
|
+
],
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=18.0.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@aishelf/shared": "file:../shared",
|
|
40
|
+
"@types/cors": "^2.8.19",
|
|
41
|
+
"@types/express": "^5.0.6",
|
|
42
|
+
"@types/form-data": "^2.2.1",
|
|
43
|
+
"@types/jsonwebtoken": "^9.0.10",
|
|
44
|
+
"@types/node": "^25.6.2",
|
|
45
|
+
"tsup": "^8.5.1",
|
|
46
|
+
"tsx": "^4.21.0",
|
|
47
|
+
"typescript": "^6.0.3"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@octokit/rest": "^22.0.1",
|
|
51
|
+
"commander": "^14.0.3",
|
|
52
|
+
"cors": "^2.8.6",
|
|
53
|
+
"dotenv": "^17.4.2",
|
|
54
|
+
"express": "^4.22.1",
|
|
55
|
+
"express-rate-limit": "^8.5.1",
|
|
56
|
+
"form-data": "^4.0.5",
|
|
57
|
+
"jsonwebtoken": "^9.0.3",
|
|
58
|
+
"simple-git": "^3.36.0",
|
|
59
|
+
"winston": "^3.19.0",
|
|
60
|
+
"zod": "^4.4.3"
|
|
61
|
+
},
|
|
62
|
+
"optionalDependencies": {
|
|
63
|
+
"node-mac": "^1.0.1",
|
|
64
|
+
"node-linux": "^0.1.12",
|
|
65
|
+
"node-windows": "^1.0.0-beta.8"
|
|
66
|
+
}
|
|
67
|
+
}
|