e1fb9a8250
* add lask for packages * Add turbo * remove custom scripts * update turbo scripts * Improve scripts, update changelogs * update action to use turbo * Update .gitignore * Update main.yml * Update main.yml * Update main.yml * Add docs * add clean
43 lines
No EOL
1 KiB
JSON
43 lines
No EOL
1 KiB
JSON
{
|
|
"version": "1.6.1",
|
|
"name": "@tldraw/intersect",
|
|
"description": "2D intersection 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",
|
|
"intersection",
|
|
"typescript",
|
|
"javascript"
|
|
],
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"source": "./src/index.ts",
|
|
"scripts": {
|
|
"start": "yarn lask -d",
|
|
"build": "yarn lask",
|
|
"start:packages": "yarn start",
|
|
"start:core": "yarn start",
|
|
"build:core": "yarn build",
|
|
"build:packages": "yarn build",
|
|
"lint": "eslint src/ --ext .ts,.tsx",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@tldraw/vec": "^1.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tldraw/vec": "*",
|
|
"lask": "^0.0.29"
|
|
},
|
|
"gitHead": "4b1137849ad07da36fc8f0f19cb64e7535a79296"
|
|
} |