Files
vue-flow/package.json
2023-02-23 13:20:39 +01:00

26 lines
811 B
JSON

{
"name": "@vue-flow/monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "pnpm --dir examples/vite dev",
"docs": "pnpm --dir docs dev",
"changelog": "git-cliff --output CHANGELOG.md && git add CHANGELOG.md && git commit -m \"chore: Update CHANGELOG.md\"",
"build:docs": "turbo docs",
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"typedocs": "turbo run build && pnpm --dir docs typedocs",
"ci:version": "changeset version",
"ci:publish": "turbo lint && turbo build && turbo test && changeset publish"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"shx": "^0.3.4",
"turbo": "^1.8.2",
"typescript": "^4.9.5"
}
}