-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 866 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 866 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
36
37
38
39
40
41
42
43
{
"name": "byul-alias",
"version": "1.0.0",
"description": "Simple git alias manager",
"main": "dist/index.js",
"bin": {
"byul-alias": "./dist/index.js"
},
"license": "MIT",
"type": "module",
"author": "love1ace <lovelacedud@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/byulhook/byul-alias.git"
},
"keywords": [
"git aliases",
"alias",
"love1ace",
"byul",
"byulhook"
],
"bugs": {
"url": "https://github.com/byulhook/byul-alias/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/byulhook/byul-alias#readme",
"dependencies": {
"yaml": "^2.5.0"
},
"devDependencies": {
"@types/node": "^22.5.0",
"typescript": "^5.5.4"
},
"scripts": {
"build": "tsc",
"preinstall": "node dist/setup.mjs"
}
}