-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.69 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@smythos/server-common",
"version": "1.0.2",
"description": "Reusable server components (middlewares, routers, utilities) for SmythOS distributions",
"homepage": "https://github.com/SmythOS/server-common#readme",
"bugs": {
"url": "https://github.com/SmythOS/server-common/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SmythOS/server-common.git"
},
"license": "MIT",
"author": "Alaa-eddine KADDOURI",
"type": "module",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/types --rootDir src -p tsconfig.json",
"build:rollup": "rollup -c ./rollup.config.js",
"build": "npm run clean && npm run build:rollup && npm run build:types",
"build:link": "npm link @smythos/sdk",
"build:local": "npm run build:link && npm run build && npm link",
"release:patch": "npm version patch && git push origin main --follow-tags",
"release:minor": "npm version minor && git push origin main --follow-tags",
"release:major": "npm version major && git push origin main --follow-tags",
"lint": "npm exec eslint \"src/**/*.ts\"",
"lint:fix": "npm exec eslint \"src/**/*.ts\" --fix"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@rollup/plugin-json": "^6.1.0",
"@types/express": "^4.17.21",
"@types/node": "^22.9.0",
"ctix": "^2.7.1",
"esbuild": "^0.25.12",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^2.79.2",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript-paths": "^1.5.0",
"typescript-eslint": "^8.46.4"
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"@modelcontextprotocol/sdk": "^1.22.0",
"@smythos/sdk": "^1.3.40",
"axios": "^1.13.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.21.1",
"joi": "^17.13.3",
"multer": "^2.0.2",
"openai": "^4.72.0",
"openapi-to-postmanv2": "^4.18.0",
"swagger-ui-express": "^5.0.1"
}
}