-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.84 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
{
"name": "@bscotch/gml-parser",
"version": "1.17.2",
"description": "A parser for GML (GameMaker Language) files for programmatic manipulation and analysis of GameMaker projects.",
"keywords": [
"gml",
"parser",
"gamemaker",
"game maker",
"game maker language",
"gml parser",
"gamemaker parser",
"stitch"
],
"homepage": "https://github.com/bscotch/stitch/tree/develop/packages/parser#readme",
"repository": {
"type": "git",
"url": "https://github.com/bscotch/stitch.git",
"directory": "packages/parser"
},
"license": "MIT",
"author": "Adam Coster (https://www.bscotch.net/about#adam-coster)",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build && pnpm build:cst-dts",
"build:cst-dts": "node ./scripts/generate-cst-dts.mjs && prettier -w ./gml-cst.d.ts",
"test": "mocha --config ../../config/.mocharc.cjs --parallel=false --timeout=30000",
"test:dev": "mocha --config ../../config/.mocharc.cjs --forbid-only=false --parallel=false --timeout=9999999999 --bail=false",
"watch": "tsc --build --watch"
},
"dependencies": {
"@bscotch/gamemaker-releases": "workspace:*",
"@bscotch/pathy": "^2.12.1",
"@bscotch/stitch-config": "workspace:*",
"@bscotch/stitch-launcher": "workspace:*",
"@bscotch/utility": "^7.2.0",
"@bscotch/yy": "workspace:*",
"chevrotain": "11.1.0",
"magic-string": "0.30.21",
"tslib": "^2.8.1",
"xml2js": "0.6.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/xml2js": "0.4.14",
"chai": "^6.2.2",
"dotenv": "17.2.3",
"mocha": "^11.7.5",
"prettier": "^3.7.4",
"typescript": "5.9.3"
},
"publishConfig": {
"access": "public"
}
}