-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 875 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 875 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
35
{
"name": "orb",
"version": "1.5.2",
"description": "A CLI for managing project templates and syncing common files across multiple projects.",
"author": "Wayne Haffenden",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/waynehaffenden/orb.git"
},
"type": "module",
"bin": {
"orb": "./bin/orb.ts"
},
"scripts": {
"dev": "bun run bin/orb.ts",
"build": "bun build ./bin/orb.ts --compile --outfile dist/orb",
"link": "bun link",
"prepare": "husky"
},
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@types/bun": "^1.3.8",
"husky": "^9.1.7",
"typescript": "^5.9.3"
}
}