-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "@gov4git/js-client",
"version": "2.2.6",
"description": "JavaScript client for gov4git",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"gov4git": "./dist/bin.js",
"g4g": "./dist/bin.js"
},
"files": [
"dist/",
"src/",
"README.md",
"package.json"
],
"scripts": {
"postinstall": "archive-downloader --no-skip",
"build:types": "tsc --emitDeclarationOnly --declaration",
"build:lib": "tsup",
"build": "run-p build:types build:lib"
},
"archive-downloader": {
"url": "https://github.com/gov4git/gov4git/releases/download/v{{version}}/gov4git_{{platform}}_{{arch}}{{platformExt}}",
"dest": "./bin",
"platform": {
"linux": "Linux",
"win32": "Windows",
"darwin": "Darwin"
},
"arch": {
"x64": "x86_64"
},
"variables": {
"version": "2.2.6"
}
},
"keywords": [
"gov4git"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.3.1",
"npm-run-all2": "^6.0.5",
"prettier": "^2.8.8",
"tsup": "^7.0.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@d-dev/archive-downloader": "^0.1.1"
}
}