-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.87 KB
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
{
"name": "dotfiles-md",
"type": "module",
"version": "0.9.3",
"license": "GPL-3.0-or-later",
"author": "Spencer Gregson",
"description": "Manage your dotfiles with markdown",
"bin": "./cli.mjs",
"main": "src/app.ts",
"homepage": "https://github.com/sgregson/dotfiles-md#readme",
"repository": {
"type": "git",
"url": "https://github.com/sgregson/dotfiles-md"
},
"keywords": [
"dotfiles",
"markdown",
"cli"
],
"engines": {
"node": ">18"
},
"os": [
"darwin"
],
"scripts": {
"prerelease": "! find . -path './node_modules' -prune -o -type l -print | grep .",
"release": "np",
"prejfdi": "yarn",
"dev": "tsc --watch",
"app": "node ./src/app.js",
"start": "node ./cli.mjs",
"test": "yarn tsc && echo \"STATUS: no test specified\"",
"tsc": "tsc"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"np": {
"branch": "main",
"releaseDraft": true,
"message": "Release %s"
},
"dependencies": {
"@inquirer/prompts": "^8.0.0",
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"escape-string-regexp": "^5.0.0",
"execa": "^9.3.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"inquirer-select-pro": "^1.0.0-alpha.6",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"string-argv": "^0.3.2",
"temp-write": "^5.0.0",
"unified": "^10.1.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"mdast": "^3.0.0",
"np": "^9.2.0",
"typescript": "^5.5.2"
},
"resolutions": {
"minimist-string/minimist": "^1.2.8"
},
"overrides": {
"minimist": "^1.2.8"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}