-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
92 lines (92 loc) · 2.45 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"assets": [
"./dist/bin/index.js"
],
"author": "Sebastien Rousseau (https://github.com/sebastienrousseau)",
"autoupdate": {
"fileMap": [
{
"basePath": "dist",
"files": [
"**/*"
]
}
],
"source": "git",
"target": "git://github.com/sebastienrousseau/dotfiles.git"
},
"bin": {
"dotfiles": "./dist/bin/index.js"
},
"bugs": {
"url": "https://github.com/sebastienrousseau/dotfiles/issues"
},
"contributors": [
"Graham Colgate (https://github.com/gramtech)"
],
"description": "Dotfiles - A set of macOS / Linux and Windows configuration files - Simply designed to fit your shell life.",
"devDependencies": {
"@types/node": "22.10.2",
"compressing": "1.10.1",
"filesizes": "0.1.2",
"fs-extra": "11.2.0",
"husky": "9.1.7",
"jsmin": "^1.0.1",
"rimraf": "6.0.1",
"typescript": "5.7.2",
"winston": "3.17.0"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"scripts": "./scripts"
},
"engines": {
"node": "^23.4.0"
},
"files": [
"dist/"
],
"homepage": "https://dotfiles.io/",
"keywords": [
"dotfiles",
"bash",
"bash-profile",
"macos",
"macosx",
"shell",
"homebrew",
"dotfiles-resources"
],
"license": "MIT",
"license_URI": "http://www.opensource.org/licenses/mit-license.php",
"lockfileVersion": 1,
"main": "./dist/bin/index.js",
"name": "@sebastienrousseau/dotfiles",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "[email protected]:sebastienrousseau/dotfiles.git"
},
"scripts": {
"build": "pnpm run backup && pnpm run copy && pnpm run assemble",
"backup": "chmod 755 \"./scripts/backup.sh\" && sh ./scripts/backup.sh backup",
"assemble": "pnpm run clean && npx tsc --build tsconfig.json && pnpm run compile",
"clean": "chmod 755 \"./scripts/clean.sh\" && sh ./scripts/clean.sh clean",
"compile": "chmod 755 \"./scripts/compile.sh\" && ./scripts/compile.sh compile",
"copy": "chmod 755 \"./scripts/copy.sh\" && ./scripts/copy.sh copy",
"help": "chmod 755 \"./scripts/help.sh\" && ./scripts/help.sh help",
"pack": "pnpm pack",
"preinstall": "npx only-allow pnpm",
"prepublishOnly": "pnpm run build",
"prepare": "husky install",
"release": "pnpm run prepublishOnly && pnpm publish --access public --tag latest --no-git-checks --report-summary",
"start": "node ./dist/bin/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"types": "./dist/bin/index.d.ts",
"version": "0.2.469"
}