-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@codiume/orbit",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"test": "vitest run",
"build": "turbo run build && turbo run typecheck",
"build:no-cache": "turbo run build --no-cache && turbo run typecheck",
"dev": "turbo run dev --no-cache --parallel --continue",
"format": "prettier --write \"**/*.{ts,tsx,md,astro,mjs,mts,d.ts,json}\"",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm run build && changeset publish"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.9.1",
"astro": "^4.16.13",
"commander": "^12.1.0",
"esbuild": "^0.24.0",
"esbuild-plugin-clean": "^1.0.1",
"kleur": "^4.1.5",
"ora": "^8.1.1",
"pkg-pr-new": "^0.0.30",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"tiny-glob": "^0.2.9",
"tsup": "^8.3.5",
"turbo": "^2.3.0",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.5"
}
}