-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "irojs",
"description": "A grammar generator for syntax highlighters.",
"keywords": ["grammar", "generator", "syntax-highlighting"],
"version": "0.1.5",
"main": "dist/index.js",
"bin": {
"iro": "bin/iro.js"
},
"author": "FireBlast",
"license": "MIT",
"homepage": "https://thefireblast.github.io/irojs",
"repository": {},
"types": "dist/index.d.ts",
"scripts": {
"build:swc": "swc src -d dist -s",
"build:rion": "nearleyc src/rion.ne -o src/rion.js",
"build:types": "tsc --emitDeclarationOnly",
"build": "pnpm run build:rion && tsc",
"format": "prettier --write .",
"test:ts": "tsc --noEmit",
"test:mocha": "mocha",
"test": "pnpm run \"/^test:.*/\"",
"prepare": "pnpm run build"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"moo": "^0.5.2",
"plist2": "^1.1.3"
},
"devDependencies": {
"@swc/cli": "^0.3.9",
"@swc/core": "^1.4.1",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/moo": "^0.5.9",
"@types/nearley": "^2.11.5",
"@types/node": "^20.11.17",
"chai": "^4.4.1",
"mocha": "^9.2.2",
"nearley": "^2.20.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}