-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.05 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.05 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
{
"name": "@marvec/cel-vm",
"version": "1.0.6",
"author": {
"name": "Martin Večeřa",
"url": "https://github.com/marvec"
},
"description": "High-performance CEL (Common Expression Language) evaluator using a bytecode VM — compile once, evaluate many times",
"type": "module",
"sideEffects": false,
"main": "./src/index.js",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js"
}
},
"types": "./src/index.d.ts",
"bin": {
"cel": "./bin/cel.js"
},
"files": [
"src/",
"bin/",
"NOTICES",
"DOCS.md"
],
"scripts": {
"test": "bun test",
"test:lexer": "bun test test/lexer.test.js",
"bench": "bun run bench/compare.js"
},
"engines": {
"node": ">=18"
},
"keywords": [
"cel",
"cel-js",
"expression",
"bytecode",
"vm",
"common-expression-language",
"evaluator"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marvec/cel-vm"
},
"devDependencies": {
"cel-js": "^0.8.2"
}
}