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
75 lines (75 loc) · 1.8 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.8 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
{
"name": "@modelscript/cli",
"version": "0.0.18",
"description": "CLI 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",
"bin": {
"msc": "./dist/main.js"
},
"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 && chmod +x dist/main.js",
"clean": "rimraf dist",
"lint": "eslint src",
"watch": "tsc --watch"
},
"dependencies": {
"@modelscript/core": "*",
"@modelscript/fmi": "*",
"@modelscript/modelica": "*",
"@modelscript/optimizer": "*",
"@modelscript/simulator": "*",
"@npmcli/package-json": "^7.0.0",
"adm-zip": "^0.5.16",
"svgdom": "^0.1.22",
"tree-sitter": "^0.21.1",
"xml-formatter": "^3.6.7",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/adm-zip": "^0.5.7",
"@types/node": "^25.3.2",
"@types/npmcli__package-json": "^4.0.4",
"@types/svgdom": "^0.1.2",
"@types/xml-formatter": "^1.2.0",
"@types/yargs": "^17.0.34",
"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",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}