-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (18 loc) · 1.05 KB
/
package.json
File metadata and controls
19 lines (18 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "micrographics",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r --filter './packages/*' build",
"clean": "pnpm -r --filter './packages/*' clean",
"dev": "pnpm --filter test-app dev",
"type-check": "pnpm -r exec tsc --noEmit",
"publish:all": "pnpm build && pnpm publish:free && pnpm publish:paid",
"publish:free": "pnpm --filter @micrographics-js/core publish --no-git-checks && pnpm --filter @micrographics-js/tailwind publish --no-git-checks",
"publish:paid": "pnpm --filter @micrographics-js/react publish --no-git-checks && pnpm --filter @micrographics-js/vue publish --no-git-checks && pnpm --filter @micrographics-js/svelte publish --no-git-checks && pnpm --filter @micrographics-js/vanilla publish --no-git-checks",
"publish:gh-free": "pnpm --filter @micrographics-js/core publish --no-git-checks --registry https://npm.pkg.github.com && pnpm --filter @micrographics-js/tailwind publish --no-git-checks --registry https://npm.pkg.github.com"
},
"devDependencies": {
"typescript": "^5.4.0"
}
}