tldraw/packages/assets/package.json
David Sheldrick b9d8246629
bump prerelease from alpha to beta (#2148)
This switches us from the 'alpha' to 'beta' prerelease tag. After we
make our first deploy folks will be able to install the latest version
by doing `npm install @tldraw/tldraw@beta`.

### Change Type

- [x] `internal` — Any other changes that don't affect the published
package[^2]


[^1]: publishes a `patch` release, for devDependencies use `internal`
[^2]: will not publish a new version
2023-11-06 11:57:12 +00:00

62 lines
1.1 KiB
JSON

{
"name": "@tldraw/assets",
"description": "A tiny little drawing app (assets).",
"version": "2.0.0-beta.0",
"author": {
"name": "tldraw GB Ltd.",
"email": "hello@tldraw.com"
},
"homepage": "https://tldraw.dev",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tldraw/tldraw"
},
"bugs": {
"url": "https://github.com/tldraw/tldraw/issues"
},
"keywords": [
"tldraw",
"drawing",
"app",
"development",
"whiteboard",
"canvas",
"infinite"
],
"files": [
"embed-icons",
"icons",
"fonts",
"translations",
"imports.js",
"imports.d.ts",
"selfHosted.js",
"selfHosted.d.ts",
"types.d.ts",
"urls.js",
"urls.d.ts",
"utils.js",
"utils.d.ts"
],
"scripts": {
"pack-tarball": "yarn pack",
"lint": "yarn run -T tsx ../../scripts/lint.ts"
},
"dependencies": {
"@tldraw/utils": "workspace:*"
},
"devDependencies": {
"lazyrepo": "0.0.0-alpha.27",
"ts-node-dev": "^1.1.8"
},
"jest": {
"preset": "config/jest/node",
"setupFiles": [
"raf/polyfill"
],
"moduleNameMapper": {
"^~(.*)": "<rootDir>/src/$1"
}
}
}