-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 993 Bytes
/
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
{
"name": "@yworks/migrate-yfiles-app",
"description": "Semi-automatically migrate yFiles for HTML code to the latest version",
"repository": "https://github.com/yWorks/migrate-yfiles-app",
"author": "yWorks GmbH <yfileshtml@yworks.com>",
"version": "30.0.2",
"license": "MIT",
"bin": "dist/cli.js",
"engines": {
"node": ">= 18"
},
"scripts": {
"migrate": "node ./dist/cli.js",
"build": "tsc",
"test": "node --import tsx --test **/*.spec.ts",
"migrate-internal": "tsx cli.ts --configPath=../../demos/tsconfig.json --target=yfiles",
"migrate-playground": "tsx cli.ts --folderPath=./playground"
},
"dependencies": {
"kolorist": "^1.8.0",
"lodash": "^4.17.21",
"ts-morph": "^22.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/lodash": "^4.17.13",
"typescript": "^5.7.2",
"tsx": "^4.19.2"
},
"private": false,
"type": "module",
"files": [
"README.md",
"package.json",
"dist"
]
}