-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "xcompile",
"version": "0.2.0",
"author": "James Prevett <[email protected]> (https://jamespre.dev)",
"description": "A robust tokenizer, parser, and transpiler",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [],
"bin": {
"xcompile-bnf": "scripts/bnf.js",
"xcompile-dump-ast": "scripts/ast.js"
},
"files": [
"dist",
"license.md"
],
"type": "module",
"homepage": "https://github.com/james-pre/xcompile",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/james-pre/xcompile.git"
},
"bugs": {
"url": "https://github.com/james-pre/xcompile/issues"
},
"engines": {
"node": ">= 20"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "tsc -p tsconfig.json --noEmit && eslint src",
"build": "tsc -p tsconfig.json",
"build:bnf": "npx xcompile-bnf src/bnf.bnf -f json -o src/bnf.json",
"build:docs": "typedoc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@types/node": "^22.10.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typedoc": "^0.27.4",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}