-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.19 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.19 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
{
"name": "@lostcityrs/runescript",
"version": "0.9.6",
"description": "Compiler for a community-derived RuneScript implementation, written in TypeScript",
"license": "MIT",
"author": "LostCityRS",
"repository": {
"type": "git",
"url": "git+https://github.com/LostCityRS/RuneScriptTS.git"
},
"bugs": {
"url": "https://github.com/LostCityRS/RuneScriptTS/issues"
},
"homepage": "https://github.com/LostCityRS/RuneScriptTS#readme",
"main": "dist/runescript.js",
"types": "dist/runescript.d.ts",
"type": "module",
"files": [
"/dist"
],
"scripts": {
"antlr": "antlr-ng -Dlanguage=TypeScript -o src/antlr --generate-visitor true --generate-listener false --exact-output-dir true src/antlr/RuneScriptLexer.g4 src/antlr/RuneScriptParser.g4",
"build": "bun build --target node --outfile dist/runescript.js --minify src/Compiler.ts",
"prepare": "bun run antlr"
},
"devDependencies": {
"@types/node": "^25.2.3",
"antlr-ng": "^1.0.10",
"antlr4ng": "^3.0.16",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.3.0"
}
}