-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
32 lines (32 loc) · 1.36 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
{
"name": "renoun",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "turbo run build",
"build:site": "pnpm build --filter=@apps/site",
"build:examples": "pnpm build --filter=@examples/*",
"dev": "turbo run dev",
"dev:site": "pnpm dev --filter=renoun --filter=@apps/site",
"dev:examples": "pnpm dev --filter=renoun --filter=@examples/*",
"test": "turbo run test",
"format": "prettier --write '**/**/*.{js,ts,tsx,json,css}'",
"ci:version": "pnpm changeset version && pnpm install --no-frozen-lockfile && git add .",
"ci:publish": "pnpm build && pnpm publish -r --access public --publish-branch main && pnpm changeset tag",
"clean": "node -e \"(function rm(directory) { ['.next', '.turbo', 'node_modules', 'dist'].includes(path.basename(directory)) ? fs.rmSync(directory, { recursive: true, force: true }) : fs.existsSync(directory) && fs.statSync(directory).isDirectory() && fs.readdirSync(directory).forEach(filePath => rm(path.join(directory, filePath))); })('.');\"",
"postinstall": "turbo run build --filter=renoun"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/node": "^22.10.10",
"prettier": "3.4.2",
"tsx": "4.19.2",
"turbo": "^2.3.4",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"engines": {
"node": "20 || >=22"
},
"packageManager": "[email protected]"
}