Skip to content

Commit aec1501

Browse files
authored
chore: v1.0.0 (#26)
1 parent d218e29 commit aec1501

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/*
2+
!/dist
3+
!LICENSE.txt
4+
!README.md
5+
!package.json

package.json

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,30 @@
11
{
22
"name": "@antv/expr",
3-
"version": "0.0.1",
4-
"description": "",
3+
"version": "1.0.0",
4+
"description": "A secure, high-performance expression evaluator for dynamic chart rendering",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm.js",
77
"types": "dist/index.d.ts",
8+
"files": ["dist", "LICENSE", "README.md", "package.json"],
89
"scripts": {
910
"build": "rollup -c",
1011
"test": "vitest run --coverage",
11-
"benchmark": "vitest bench"
12+
"benchmark": "vitest bench",
13+
"prepublishOnly": "npm run build"
14+
},
15+
"keywords": [
16+
"expression",
17+
"evaluator",
18+
"parser",
19+
"secure",
20+
"antv",
21+
"chart",
22+
"expr"
23+
],
24+
"repository": {
25+
"type": "git",
26+
"url": "https://github.com/antvis/expr"
1227
},
13-
"keywords": [],
14-
"author": "",
1528
"license": "MIT",
1629
"devDependencies": {
1730
"@biomejs/biome": "1.9.4",

0 commit comments

Comments
 (0)