-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 911 Bytes
/
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
{
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^18.17.12",
"typescript": "^5.0.4"
},
"dependencies": {
"fs": "^0.0.1-security",
"inquirer": "^9.1.5"
},
"name": "dotman",
"version": "1.0.0",
"description": "Manage dotfiles in multiple machines easily",
"main": "app.js",
"type": "module",
"bin": {
"dotman": "app.js"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/splitscale/dotman.git"
},
"bugs": {
"url": "https://github.com/splitscale/dotman/issues"
},
"homepage": "https://github.com/splitscale/dotman#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx tsc -w",
"build": "npx tsc",
"preview": "npx tsc && npm link",
"clean": "npm unlink"
},
"author": "Jerome R. Cabugwason",
"license": "MIT"
}