forked from SmythOS/sre
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.45 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.45 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@smythos/cli",
"version": "0.3.6",
"description": "SmythOS SRE Command Line Interface",
"keywords": [
"smythos",
"sre",
"cli",
"agentic AI",
"AI",
"LLM",
"vector-db"
],
"author": "Alaa-eddine KADDOURI",
"license": "MIT",
"main": "dist/index.cjs",
"types": "dist/types/index.d.ts",
"bin": {
"sre": "dist/index.cjs"
},
"exports": {
".": {
"import": "./dist/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"theme.json",
"README.md",
"CHANGELOG.md"
],
"type": "module",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/smythos/sre.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/smythos/sre/issues"
},
"homepage": "https://github.com/smythos/sre#readme",
"scripts": {
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/types -p tsconfig.dts.json",
"build:bundle": "cross-env BUILD=dev rollup -c",
"build": "pnpm run build:bundle && pnpm run oclif:manifest",
"dev": "rollup -c -w",
"lint": "echo 'Lint script not implemented'",
"test": "echo 'Test script not implemented'",
"oclif:manifest": "oclif manifest",
"prepack": "pnpm run oclif:manifest",
"gen:docs": "typedoc",
"knip": "knip"
},
"oclif": {
"bin": "sre",
"dirname": "sre",
"commands": "./dist/commands",
"topicSeparator": " ",
"theme": "theme.json",
"hooks": {
"preparse": "./dist/hooks/preparse.cjs"
},
"topics": {
"agent": {
"description": "Run .smyth agent files"
},
"create": {
"description": "Create new SmythOS project"
},
"update": {
"description": "Update CLI and check for updates"
}
}
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.14.0",
"@oclif/core": "^4.3.3",
"@oclif/plugin-help": "^6.2.21",
"@oclif/test": "^3.1.9",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/pluginutils": "^5.1.0",
"@smythos/sdk": "workspace:*",
"@smythos/sre": "workspace:*",
"@types/extract-zip": "^2.0.3",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.19.0",
"@types/update-notifier": "^6.0.8",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
"dotenv": "^16.5.0",
"esbuild": "^0.25.0",
"express": "^4.21.2",
"extract-zip": "^2.0.1",
"glob": "^11.0.3",
"inquirer": "^9.2.15",
"knip": "^5.61.1",
"log-update": "^6.1.0",
"oclif": "^4.19.0",
"ora": "^8.2.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript-paths": "^1.5.0",
"rollup-plugin-visualizer": "^6.0.4",
"tokenloom": "^1.0.7",
"ts-node": "^10.9.2",
"typedoc": "^0.28.5",
"typescript": "^5.4.5",
"update-notifier": "^7.0.0"
}
}