-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.47 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
{
"name": "globlist-packer",
"version": "0.1.0",
"description": "CLI and NodeJS utility for packing files into an archive based on ignore glob pattern lists, such as .gitignore files.",
"type": "module",
"main": "./dist/index.cjs",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=12.17.0"
},
"files": [
"dist"
],
"bin": {
"globlist-packer": "dist/cli.cjs",
"globpack": "dist/cli.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/joshuatz/globlist-packer.git"
},
"bugs": {
"url": "https://github.com/joshuatz/globlist-packer/issues"
},
"author": {
"name": "Joshua Tzucker",
"url": "https://joshuatz.com/?utm_source=package"
},
"homepage": "https://github.com/joshuatz/globlist-packer",
"keywords": [
"ignorelist",
"ignore",
"globlist",
"globlist archive",
"globlist zip",
"archiver",
"glob packer",
"gitignore archive",
"distributable"
],
"license": "MIT",
"scripts": {
"clean": "shx rm -rf dist && shx mkdir dist",
"build": "npm run clean && tsup src/index.ts src/cli.ts --dts src/index.ts --format esm,cjs"
},
"dependencies": {
"archiver": "^5.3.0",
"cmd-ts": "^0.6.9",
"enquirer": "^2.3.6",
"fs-extra": "^9.1.0",
"ignore-walk": "^3.0.3",
"listr2": "^3.7.1"
},
"devDependencies": {
"@types/archiver": "^5.1.0",
"@types/fs-extra": "^9.0.11",
"@types/ignore-walk": "^3.0.1",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"tsup": "^4.9.1",
"typescript": "^4.2.4"
}
}