-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "essence-compiler",
"version": "0.0.1",
"description": "A new simple but powerful language.",
"main": "index.js",
"scripts": {
"pre-commit": "bun compile-grammar && bun format && bun test",
"compile-grammar": "nearleyc src/parser/grammar.ne -o src/parser/grammar.ts",
"check": "biome check --write"
},
"keywords": ["language", "essence"],
"author": "Alexander Trefz",
"license": "MIT",
"engines": {
"bun": ">=1.0.x"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bun": "1.1.6",
"@types/deep-equal": "1.0.4",
"@types/escodegen": "0.0.10",
"@types/estree": "1.0.5",
"@types/nearley": "2.11.5",
"@types/yargs": "17.0.33",
"husky": "9.1.4"
},
"dependencies": {
"bigint-fraction": "1.0.6",
"chalk": "5.3.0",
"deep-equal": "2.2.3",
"esbuild": "0.23.0",
"escodegen": "alexandertrefz/escodegen",
"nearley": "2.20.1",
"typescript": "5.5.4",
"yargs": "17.7.2"
},
"repository": {
"url": "https://[email protected]/atrefz/essence.git",
"type": "git"
},
"trustedDependencies": ["@biomejs/biome", "esbuild"]
}