mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 15:45:13 +00:00
229f2ba9d5
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"name": "@gitbook/expr",
|
|
"description": "Safely evaluate & parse user-defined GitBook expressions.",
|
|
"version": "1.2.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"dependencies": {
|
|
"eval-estree-expression": "github:jonschlinkert/eval-estree-expression#9cf28d2",
|
|
"acorn": "^8.14.0",
|
|
"acorn-loose": "8.4.0",
|
|
"acorn-walk": "^8.3.4",
|
|
"escodegen": "^2.1.0",
|
|
"assert-never": "^1.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "^1.1.20",
|
|
"tsdown": "^0.15.0",
|
|
"@types/estree": "^1.0.6",
|
|
"@babel/types": "^7.26.0",
|
|
"@types/json-schema": "^7.0.15",
|
|
"@types/escodegen": "^0.0.10"
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown --project tsconfig.build.json",
|
|
"typecheck": "tsc --noEmit",
|
|
"unit": "bun test",
|
|
"clean": "rm -rf ./dist"
|
|
},
|
|
"files": ["dist", "README.md", "CHANGELOG.md"]
|
|
}
|