-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "md-aggregate",
"version": "1.1.13",
"description": "Aggregate README.md with CHANGELOG.md or whatever",
"keywords": [
"markdown",
"cli",
"aggregate",
"merge",
"replace",
"import"
],
"homepage": "https://github.com/snomiao/js/tree/main/packages/md-aggregate#readme",
"bugs": {
"url": "https://github.com/snomiao/js/issues?q=is%3Aissue+is%3Aopen+md-aggregate"
},
"repository": "https://github.com/snomiao/js/tree/main/packages/md-aggregate",
"license": "GPLv3",
"author": "snomiao <snomiao@gmail.com>",
"type": "module",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.js"
},
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"md-aggregate": "lib/cli.js"
},
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc && node esbuild-with-cli.mjs",
"prepack": "snobuild --lib",
"postversion": "prettier -w CHANGELOG.md && md-aggregate CHANGELOG.md README.md -w"
},
"dependencies": {
"escape-string-regexp": "^5.0.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"snobuild": "^1.0.0"
},
"publishConfig": {
"access": "public"
}
}