-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.7 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@claudiu-ceia/exp",
"version": "0.2.0",
"description": "TypeScript expression parser and evaluator for application-defined filters, conditions, and formulas.",
"keywords": [
"bun",
"conditions",
"deno",
"diagnostics",
"dsl",
"expression-evaluator",
"expression-language",
"expression-parser",
"filters",
"formulas",
"interpreter",
"nodejs",
"parser-combinators",
"typed-ast",
"typescript"
],
"homepage": "https://github.com/ClaudiuCeia/exp#readme",
"bugs": {
"url": "https://github.com/ClaudiuCeia/exp/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ClaudiuCeia/exp.git"
},
"files": [
"dist",
"docs",
"examples",
"LICENSE",
"README.md"
],
"type": "module",
"sideEffects": false,
"types": "./dist/mod.d.ts",
"exports": {
".": {
"types": "./dist/mod.d.ts",
"import": "./dist/mod.js"
}
},
"scripts": {
"check": "bun run format:check && bun run lint && bun run typecheck && bun run test && bun run presentation:check && bun run bench:verify",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint --deny-warnings .",
"typecheck": "tsc --noEmit",
"test": "bun test ./tests",
"coverage": "bun test --coverage ./tests",
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"package:check": "bun run build && publint && attw --pack . --profile esm-only",
"presentation:check": "bun run build && tsc --noEmit --project tsconfig.examples.json && bun run examples/readme.test.ts && bun run scripts/check_metadata.ts",
"prepack": "bun run build",
"bench": "bun run bench/parse.bench.ts && bun run bench/eval.bench.ts",
"bench:comparison": "bun run bench/comparison.bench.ts",
"bench:comparison:json": "bun run bench/comparison.bench.ts --json",
"bench:compare": "bun run scripts/benchmark-report.ts",
"bench:parse": "bun run bench/parse.bench.ts",
"bench:eval": "bun run bench/eval.bench.ts",
"bench:verify": "bun run bench/comparison.bench.ts --verify",
"exp": "bun run cli/exp.ts",
"repl": "bun run exp -- repl",
"hooks:install": "ln -sf ../../scripts/pre-commit .git/hooks/pre-commit && chmod +x scripts/pre-commit",
"hooks:uninstall": "rm -f .git/hooks/pre-commit"
},
"dependencies": {
"@claudiu-ceia/combine": "^0.11.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@stricli/core": "1.3.0",
"@types/bun": "1.4.1",
"mitata": "1.0.34",
"oxfmt": "0.66.0",
"oxlint": "1.81.0",
"publint": "0.3.24",
"typescript": "~7.0.0"
},
"engines": {
"node": ">=22"
},
"packageManager": "bun@1.4.0"
}