mirror of
https://github.com/logseq/logseq.git
synced 2026-04-26 07:05:10 +00:00
37 lines
987 B
JSON
37 lines
987 B
JSON
{
|
|
"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"
|
|
}
|