-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.66 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.66 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
64
65
66
67
68
69
70
{
"name": "cel2js",
"version": "0.1.0",
"description": "CEL (Common Expression Language) to JavaScript transpiler",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ctoth/cel2js.git"
},
"homepage": "https://github.com/ctoth/cel2js#readme",
"bugs": {
"url": "https://github.com/ctoth/cel2js/issues"
},
"author": "Christopher Toth",
"keywords": [
"cel",
"common-expression-language",
"transpiler",
"expression",
"compiler",
"google-cel"
],
"scripts": {
"build:parser": "peggy --format es -o src/parser/parser.js src/parser/cel.peggy",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"bench": "vitest bench",
"bench:run": "vitest bench --run",
"bench:gate": "npx tsx bench/gate.ts",
"precommit": "tsc --noEmit && biome check .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"dependencies": {
"astring": "^1.9.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@bufbuild/cel": "^0.4.0",
"@bufbuild/cel-spec": "^0.4.0",
"@bufbuild/protobuf": "^2.6.2",
"@marcbachmann/cel-js": "^7.5.1",
"@types/estree": "^1.0.8",
"cel-js": "^0.8.2",
"lefthook": "^2.1.1",
"peggy": "^5.0.6",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"license": "MIT"
}