Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangfisher committed Jul 31, 2024
1 parent d23f707 commit 81ff223
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 4 deletions.
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
"description": "A quick tree database access tool library based on Left Right Value Algorithm",
"author": "wxzhang",
"license": "MIT",
"homepage": "https://zhangfisher.github.io/flextree/",
"repository": {
"type": "git",
"url": "[email protected]:zhangfisher/flextree.git"
},
"keywords": [],
"scripts": {
"test": "vitest",
Expand Down
13 changes: 12 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,22 @@
"description": "Tree storage library based on left-right value algorithm",
"author": "wxzhang",
"license": "MIT",
"homepage": "https://zhangfisher.github.io/flextree/",
"repository": {
"type": "git",
"url": "[email protected]:zhangfisher/flextree.git"
},
"keywords": [],
"keywords": ["flextree","tree storage"],
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"main": "src/index.ts",
"scripts": {
Expand Down
5 changes: 5 additions & 0 deletions packages/prisma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
"author": "[email protected]",
"license": "ISC",
"keywords": ["flextree"],
"homepage": "https://zhangfisher.github.io/flextree/",
"repository": {
"type": "git",
"url": "[email protected]:zhangfisher/flextree.git"
},
"main": "src/index.ts",
"publishConfig": {
"access": "public",
Expand Down
7 changes: 6 additions & 1 deletion packages/sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
"type": "module",
"version": "1.0.0",
"description": "sqlite driver for flextree",
"author": "",
"author": "zhangfisher",
"homepage": "https://zhangfisher.github.io/flextree/",
"repository": {
"type": "git",
"url": "[email protected]:zhangfisher/flextree.git"
},
"license": "MIT",
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

[Home](https:/github.com/zhangfisher/flextree) | [简体中文](./readme_cn.md)
[Home](https://zhangfisher.github.io/flextree/) | [简体中文](./readme_cn.md)

`FlexTree` is a tree storage and management component based on the `left-right` algorithm, which provides efficient tree structure storage and access, and supports a variety of tree operations such as add, delete, modify, query, traversal, and movement.

Expand Down
2 changes: 1 addition & 1 deletion readme_cn.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[官网](https:/github.com/zhangfisher/flextree) | [English](./readme.md)
[官网](https://zhangfisher.github.io/flextree/) | [English](./readme.md)

`FlexTree``Nodejs`下一个基于左右值算法的树结构库,它提供了一种简单的方式来存储和操作树形结构数据。
`FlexTree`提供了简单而丰富的`API`让你可以轻松的操作树,如增删改查、遍历、移动、查询等。
Expand Down

0 comments on commit 81ff223

Please sign in to comment.