tldraw/scripts/package.json
David Sheldrick 6d4b46e6d6
Implement new package publish process (#2996)
Gonna merge in a sneaky dry run mode to test the args parsing etc
### Change Type

- [ ] `patch` — Bug fix
- [ ] `minor` — New feature
- [ ] `major` — Breaking change
- [ ] `dependencies` — Changes to package dependencies[^1]
- [ ] `documentation` — Changes to the documentation only[^2]
- [ ] `tests` — Changes to any test code only[^2]
- [x] `internal` — Any other changes that don't affect the published
package[^2]
- [ ] I don't know

[^1]: publishes a `patch` release, for devDependencies use `internal`
[^2]: will not publish a new version

### Test Plan

1. Add a step-by-step description of how to test your PR here.
2.

- [ ] Unit Tests
- [ ] End to end tests

### Release Notes

- Add a brief release note for your PR here.
2024-02-29 12:21:11 +00:00

62 lines
1.3 KiB
JSON

{
"name": "@tldraw/scripts",
"description": "build scripts",
"version": "2.0.0-alpha.8",
"private": true,
"author": {
"name": "tldraw Inc.",
"email": "hello@tldraw.com"
},
"homepage": "https://tldraw.dev",
"license": "SEE LICENSE IN LICENSE.md",
"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"
],
"devDependencies": {
"@actions/github": "^6.0.0",
"@auto-it/core": "^11.1.1",
"@aws-sdk/client-s3": "^3.440.0",
"@aws-sdk/lib-storage": "^3.440.0",
"@types/is-ci": "^3.0.0",
"@types/node": "~20.11",
"@types/tar": "^6.1.7",
"@typescript-eslint/utils": "^5.59.0",
"ast-types": "^0.14.2",
"cross-fetch": "^3.1.5",
"esbuild": "^0.18.4",
"eslint": "^8.37.0",
"glob": "^8.0.3",
"gray-matter": "^4.0.3",
"is-ci": "^3.0.1",
"kleur": "^4.1.5",
"lazyrepo": "0.0.0-alpha.27",
"prettier": "^3.0.3",
"recast": "^0.22.0",
"rimraf": "^4.4.0",
"semver": "^7.3.8",
"svgo": "^3.0.2",
"typescript": "^5.3.3"
},
"scripts": {
"lint": "yarn run -T tsx lint.ts"
},
"dependencies": {
"@types/minimist": "^1.2.5",
"ignore": "^5.2.4",
"minimist": "^1.2.8",
"tar": "^6.2.0"
}
}