tldraw/packages/core/package.json

66 lines
1.8 KiB
JSON
Raw Normal View History

2021-08-10 16:12:55 +00:00
{
"name": "@tldraw/core",
2021-09-14 07:52:14 +00:00
"version": "0.0.92",
2021-08-10 16:12:55 +00:00
"private": false,
2021-09-05 11:00:52 +00:00
"description": "A tiny little drawing app (core)",
2021-08-10 16:12:55 +00:00
"author": "@steveruizok",
"repository": {
"type": "git",
"url": "git+https://github.com/tldraw/tldraw.git",
"directory": "packages/core"
},
"license": "MIT",
"keywords": [],
2021-09-05 11:19:08 +00:00
"files": [
"dist/**/*"
],
2021-08-10 16:12:55 +00:00
"main": "./dist/cjs/index.js",
2021-08-27 09:53:01 +00:00
"module": "./dist/esm/index.js",
2021-08-10 16:12:55 +00:00
"types": "./dist/types/index.d.ts",
2021-08-27 09:53:01 +00:00
"typings": "./dist/types/index.d.ts",
2021-08-10 16:12:55 +00:00
"scripts": {
2021-08-30 18:10:30 +00:00
"start:pre": "node scripts/pre-dev && yarn types:pre",
"start": "node scripts/dev & yarn types:dev",
"build": "node scripts/build && yarn types:build",
2021-09-05 10:14:46 +00:00
"types:pre": "tsc",
2021-09-14 07:51:24 +00:00
"types:dev": "tsc -w",
"types:build": "tsc -p tsconfig.build.json && tsconfig-replace-paths -p tsconfig.build.json",
2021-08-10 16:12:55 +00:00
"lint": "eslint src/ --ext .ts,.tsx",
"clean": "rm -rf dist",
"ts-node": "ts-node",
2021-09-05 09:51:21 +00:00
"docs": "typedoc",
"docs:watch": "typedoc --watch"
2021-08-10 16:12:55 +00:00
},
"devDependencies": {
2021-09-04 15:21:02 +00:00
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
2021-09-14 07:51:24 +00:00
"@herbcaudill/tscpaths": "^0.0.17",
2021-08-13 09:28:09 +00:00
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
2021-08-10 16:12:55 +00:00
"@types/react": "^17.0.16",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
2021-08-30 07:45:10 +00:00
"esbuild": "^0.12.24",
"eslint": "^7.32.0",
2021-09-04 15:21:02 +00:00
"lerna": "^4.0.0",
2021-08-10 16:12:55 +00:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
2021-08-30 07:45:10 +00:00
"ts-node": "^10.2.1",
2021-09-14 07:51:24 +00:00
"tsconfig-replace-paths": "^0.0.5",
2021-08-30 07:45:10 +00:00
"tslib": "^2.3.1",
"typedoc": "^0.22.3",
2021-09-04 15:21:02 +00:00
"typescript": "^4.4.2"
2021-08-10 16:12:55 +00:00
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
2021-09-14 07:52:14 +00:00
"@tldraw/intersect": "^0.0.92",
"@tldraw/vec": "^0.0.92",
2021-09-09 12:32:08 +00:00
"@use-gesture/react": "^10.0.0-beta.24"
},
2021-09-12 13:11:29 +00:00
"gitHead": "5cb031ddc264846ec6732d7179511cddea8ef034"
2021-09-14 07:52:14 +00:00
}