move tldraw/next inside of logseq

This commit is contained in:
Peng Xiao
2022-05-16 19:55:07 +08:00
parent a62d6e7e90
commit e02a7dd344
434 changed files with 34554 additions and 38456 deletions

View File

@@ -0,0 +1,36 @@
{
"version": "2.0.0-alpha.1",
"name": "@tldraw/vec",
"description": "2D vector utilities for TLDraw and maybe you, too.",
"author": "@steveruizok",
"repository": {
"type": "git",
"url": "git+https://github.com/tldraw/tldraw.git"
},
"license": "MIT",
"keywords": [
"2d",
"vector",
"typescript",
"javascript"
],
"files": [
"dist/**/*"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"start:all": "yarn start:utils",
"start:utils": "node scripts/dev & yarn types:dev",
"build:all": "yarn build",
"build:utils": "yarn build",
"build:packages": "yarn build",
"build": "node scripts/build && yarn types:build",
"types:dev": "tsc -w --p tsconfig.build.json",
"types:build": "tsc -p tsconfig.build.json",
"lint": "eslint src/ --ext .ts,.tsx",
"clean": "rm -rf dist"
},
"gitHead": "3ab5db27b9e83736fdae934474e80e90c854922c"
}