forked from bscotch/stitch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.22 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
{
"name": "@bscotch/stitch-launcher",
"version": "1.5.1",
"description": "Manage GameMaker IDE and runtime installations for fast switching between versions.",
"keywords": [
"gml",
"gamemaker",
"game-maker",
"stitch",
"ide",
"runtime",
"launcher",
"version",
"installer",
"install",
"downloader",
"download"
],
"homepage": "https://github.com/bscotch/stitch/tree/develop/packages/launcher#readme",
"repository": {
"type": "git",
"url": "https://github.com/bscotch/stitch.git",
"directory": "packages/launcher"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/lib/GameMakerLauncher.types.d.ts",
"import": "./dist/lib/GameMakerLauncher.types.js"
},
"./dist/lib/GameMakerLauncher.types.js": {
"types": "./dist/lib/GameMakerLauncher.types.d.ts",
"import": "./dist/lib/GameMakerLauncher.types.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "rimraf build dist *.tsbuildinfo **/*.tsbuildinfo",
"test": "mocha --config ../../config/.mocharc.cjs",
"test:auto": "pnpm mocha --config ../../config/.mocharc.cjs --reporter json --forbid-only=false --parallel=false --exit --timeout=450000 --bail=false -O output=test-results.json",
"test:dev": "mocha --config ../../config/.mocharc.cjs --forbid-only=false --parallel=false --timeout=9999999999",
"build_test": "tsc --build && mocha --config ../../config/.mocharc.cjs --forbid-only=false --parallel=false --timeout=9999999999",
"watch": "tsc --build --watch"
},
"dependencies": {
"@bscotch/gamemaker-releases": "workspace:*",
"@bscotch/logger": "0.2.2",
"@bscotch/pathy": "^2.12.0",
"@bscotch/utility": "^7.2.0",
"axios": "^1.6.1",
"tslib": "^2.6.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/inquirer": "^9.0.7",
"@types/mocha": "^10.0.4",
"chai": "^4.3.10",
"inquirer": "9.2.12",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
}
}