-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.07 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
{
"name": "functional-models-orm-mcp",
"version": "3.6.0",
"description": "A functional-models-orm datastore provider that uses the @modelcontextprotocol/sdk. Great for using models on a frontend.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -Rf ./dist && tsc -p ./tsconfig.json && cp package.json ./dist && cp README.md ./dist",
"build:watch": "nodemon -e '*' --watch ./src --exec npm run build",
"commit": "cz",
"dist": "npm run build && cd dist && npm publish",
"eslint": "eslint .",
"prettier": "prettier --write .",
"prettier:check": "prettier -c .",
"test": "export TS_NODE_PROJECT='./tsconfig.test.json' && mocha -r tsx ./test/src/*.test.ts ./test/src/**/*.test.ts ./test/src/**/**/*.test.ts",
"test:coverage": "c8 --all --reporter cobertura --reporter text --reporter lcov --reporter html npm run test",
"test:features": "./node_modules/.bin/cucumber-js -p default"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"functional-models",
"orm",
"model context protocol",
"mcp"
],
"author": "Mike Cornwell",
"license": "GPLV3",
"repository": {
"type": "git",
"url": "git+https://github.com/monolithst/functional-models-orm-mcp.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/monolithst/functional-models-orm-rest-client/issues"
},
"homepage": "https://github.com/monolithst/functional-models-orm-rest-client#readme",
"devDependencies": {
"@cucumber/cucumber": "^11.3.0",
"@eslint/compat": "^1.2.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@types/chai-as-promised": "^8.0.1",
"@types/json-stringify-safe": "^5.0.3",
"@types/lodash": "^4.17.13",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.0",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"argparse": "^2.0.1",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"cz-conventional-changelog": "^3.0.1",
"eslint": "9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-functional": "~7.1.0",
"eslint-plugin-import": "^2.31.0",
"esprima": "^4.0.1",
"functional-models-orm-memory": "^3.0.0",
"globals": "^15.12.0",
"handlebars": "^4.7.8",
"js-yaml": "^4.1.0",
"mocha": "^10.8.2",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"proxyquire": "^2.1.3",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"source-map-support": "^0.5.21",
"ts-mocha": "^10.0.0",
"ts-node": "^10.4.0",
"tsx": "^4.19.2",
"typescript": "5.3.3"
},
"dependencies": {
"@l4t/mcp-ai": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.11.4",
"axios": "^1.9.0",
"functional-models": "^3.6.0",
"functional-models-openapi": "^3.0.2",
"lodash": "^4.17.21",
"uuid": "^11.1.0",
"zod": "^4.1.11"
}
}