-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 895 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 895 Bytes
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
{
"name": "clifty-monorepo",
"version": "0.3.2",
"description": "A CLI orchestration and testing tool - monorepo",
"repository": {
"type": "git",
"url": "https://github.com/Lms24/clifty"
},
"author": "Lukas Stracke",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"test": "pnpm -r test",
"test:watch": "pnpm -r test:watch",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"prepublishOnly": "npm pack --dry-run"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@types/node": "^22.14.1",
"@clack/prompts": "^0.11.0",
"@types/yargs": "^17.0.33",
"standard-version": "^9.5.0",
"typescript": "^5.8.3",
"vite": "^6.3.2",
"vitest": "^3.1.1",
"yargs": "^18.0.0"
}
}