-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.83 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "bonsai-js",
"version": "0.5.0",
"description": "A safe, zero-dependency expression language for rules, filters, and templates",
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./stdlib": {
"types": "./dist/stdlib/index.d.mts",
"import": "./dist/stdlib/index.mjs"
},
"./autocomplete": {
"types": "./dist/autocomplete/index.d.mts",
"import": "./dist/autocomplete/index.mjs"
}
},
"files": [
"dist",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danfry1/bonsai-js.git"
},
"homepage": "https://danfry1.github.io/bonsai-js/",
"bugs": {
"url": "https://github.com/danfry1/bonsai-js/issues"
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"bench": "vitest bench",
"bench:gate": "bun run scripts/perf-gate.ts",
"check:package": "bun run build && bun run scripts/check-package.ts",
"lint": "oxlint --type-aware --deny-warnings src tests scripts",
"format": "oxfmt src tests scripts benchmarks tsdown.config.ts vitest.config.ts",
"format:check": "oxfmt --check src tests scripts benchmarks tsdown.config.ts vitest.config.ts",
"knip": "knip",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"dev:website": "vitepress dev website",
"build:website": "vitepress build website",
"preview:website": "vitepress preview website",
"prepare": "test -n \"$CI\" || lefthook install",
"prepublishOnly": "bun run format:check && bun run lint && bun run typecheck && bun run test && bun run bench:gate && bun run check:package",
"test:coverage": "vitest run --coverage",
"test:mutation": "stryker run",
"fuzz": "bun run scripts/fuzz.ts"
},
"keywords": [
"expression",
"evaluator",
"parser",
"safe",
"sandbox",
"template",
"pipe",
"transform",
"formula",
"dsl",
"ast",
"jexl",
"compiler"
],
"author": "Daniel Fry",
"license": "MIT",
"engines": {
"node": ">=22"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.4",
"@fast-check/vitest": "0.4.1",
"@stryker-mutator/core": "9.6.1",
"@stryker-mutator/vitest-runner": "9.6.1",
"@types/node": "22.20.0",
"@vitest/coverage-v8": "4.1.9",
"fast-check": "4.8.0",
"jexl": "2.3.0",
"knip": "6.18.0",
"lefthook": "2.1.9",
"oxfmt": "0.56.0",
"oxlint": "1.71.0",
"oxlint-tsgolint": "0.23.0",
"tsdown": "0.22.3",
"typescript": "6.0.3",
"vitepress": "1.6.4",
"vitest": "4.1.9"
},
"overrides": {
"vite": "7.3.3",
"postcss": "8.5.11",
"picomatch": "4.0.4"
}
}