forked from modelscript/modelscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.37 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.37 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
{
"name": "@modelscript/api",
"version": "0.0.0",
"description": "REST API for ModelScript",
"keywords": [
"modelscript"
],
"homepage": "https://modelscript.org",
"bugs": {
"url": "https://github.com/modelscript/modelscript/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/modelscript/modelscript.git"
},
"license": "AGPL-3.0-or-later",
"author": "Mohamad Omar Nachawati <mnachawa@gmail.com>",
"type": "module",
"files": [
"package.json",
"README.md",
"COPYING",
"src/**/*.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"scripts": {
"build": "npm run clean && npm run lint && tsc",
"clean": "rimraf dist",
"dev": "PORT=3000 NODE_OPTIONS='--max-old-space-size=8192 --dns-result-order=ipv4first' tsx watch src/main.ts",
"lint": "eslint src",
"watch": "tsc --watch"
},
"dependencies": {
"@comunica/query-sparql": "^5.1.3",
"@comunica/query-sparql-rdfjs": "^5.1.3",
"@modelscript/core": "*",
"@modelscript/cosim": "*",
"@modelscript/modelica": "*",
"@svgdotjs/svg.js": "^3.2.5",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.8.0",
"express": "^5.1.0",
"express-rate-limit": "^8.3.2",
"graphql": "^16.13.0",
"graphql-http": "^1.22.4",
"jsonwebtoken": "^9.0.3",
"multer": "^2.0.1",
"n3": "^2.0.1",
"path-to-regexp": "^8.4.2",
"pg": "^8.16.0",
"semver": "^7.7.1",
"svgdom": "^0.1.22",
"tree-sitter": "^0.21.1",
"xml-formatter": "^3.6.7",
"yauzl": "^3.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^1.4.12",
"@types/n3": "^1.26.1",
"@types/node": "^25.3.2",
"@types/pg": "^8.15.4",
"@types/semver": "^7.7.0",
"@types/supertest": "^7.2.0",
"@types/svgdom": "^0.1.2",
"@types/xml-formatter": "^1.2.0",
"@types/yauzl": "^2.10.3",
"@types/yazl": "^3.3.0",
"eslint": "^9.39.1",
"jiti": "^2.6.1",
"lerna": "^9.0.0",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^3.0.0",
"rimraf": "^6.1.0",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"yazl": "^3.3.1"
},
"engines": {
"node": ">=24"
}
}