-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.08 KB
/
package.json
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
{
"name": "tonto-cli",
"displayName": "Tonto CLI",
"publisher": "Lenke",
"author": {
"name": "Matheus Lenke Coutinho",
"email": "matheuslenke@gmail.com"
},
"type": "module",
"description": "Tonto is a DSL for creating OntoUML models",
"version": "0.3.6",
"license": "MIT",
"icon": "data/images/TontoIcon.png",
"repository": {
"type": "git",
"url": "https://github.com/matheuslenke/Tonto",
"directory": "packages/tonto"
},
"engines": {
"node": ">= 16"
},
"categories": [
"Programming Languages"
],
"files": [
"lib",
"src",
"node.js",
"node.d.ts",
"tonto-manifest-schema.json"
],
"bin": {
"tonto-cli": "./bin/cli.js"
},
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "shx rm -rf lib coverage",
"build": "tsc",
"watch": "tsc --watch",
"test": "vitest",
"test-ui": "vitest --ui",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src --fix --ext ts",
"langium:generate": "langium generate",
"langium:watch": "langium generate --watch",
"publish": "npm publish",
"publish:latest": "npm publish --tag latest"
},
"dependencies": {
"ajv": "^8.12.0",
"chalk": "^5.3.0",
"chevrotain": "^10.4.2",
"commander": "^11.0.0",
"glob": "^10.2.2",
"jspdf": "^2.5.1",
"langium": "^3.0.0",
"node-fetch-native": "^1.0.1",
"nomnoml": "^1.6.2",
"ontouml-js": "github:matheuslenke/ontouml-js#feature/include-types-in-build",
"rimraf": "^4.1.2",
"uuid": "^9.0.1",
"vscode-languageclient": "~9.0.1",
"vscode-languageserver": "~9.0.1",
"vscode-languageserver-types": "^3.17.3",
"vscode-uri": "^3.0.7"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.17",
"@types/node-fetch": "^2.6.1",
"@types/uuid": "^9.0.8",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitest/coverage-c8": "^0.23.2",
"langium-cli": "^3.0.0",
"prettier": "^3.2.5",
"typescript": "~4.9.5"
}
}