-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 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": "@antv/expr",
"version": "1.0.1",
"description": "A secure, high-performance expression evaluator for dynamic chart rendering",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": ["dist", "LICENSE", "README.md", "package.json"],
"scripts": {
"build": "rollup -c && npm run size",
"test": "vitest run --coverage",
"size": "limit-size",
"benchmark": "vitest bench",
"prepublishOnly": "pnpm run test && pnpm run build"
},
"keywords": [
"expression",
"evaluator",
"parser",
"secure",
"antv",
"chart",
"expr"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@vitest/coverage-v8": "^3.0.8",
"expr-eval": "^2.0.2",
"limit-size": "^0.1.4",
"rollup": "^4.34.6",
"tslib": "^2.8.1",
"vitest": "^3.0.8"
},
"limit-size": [
{
"path": "dist/index.cjs.js",
"limit": "8 Kb"
},
{
"path": "dist/index.cjs.js",
"limit": "3 Kb",
"gzip": true
}
],
"repository": {
"type": "git",
"url": "https://github.com/antvis/expr"
},
"license": "MIT"
}