-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
69 lines (69 loc) · 1.64 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
{
"name": "@sigstore/cli",
"version": "0.8.1",
"description": "Sigstore CLI",
"author": "Brian DeHamer @bdehamer",
"license": "Apache-2.0",
"keywords": [
"cli",
"sigstore"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"sigstore": "./bin/run"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"clean": "shx rm -rf dist",
"prebuild": "npm run clean",
"build": "tsc -b",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "npm run build && oclif manifest && npm run readme",
"test": "jest",
"readme": "oclif readme --no-aliases && shx sed -i \"s/^_See code:.*$//g\" README.md"
},
"dependencies": {
"@oclif/color": "^1.0.13",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@sigstore/bundle": "^3.0.0",
"@sigstore/oci": "^0.4.0",
"@sigstore/sign": "^3.0.0",
"open": "^8.4.2",
"openid-client": "^5.7.0",
"sigstore": "^3.0.0"
},
"devDependencies": {
"make-fetch-happen": "^14.0.2",
"oclif": "^4",
"ts-node": "^10.9.2",
"tslib": "^2.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sigstore/sigstore-js.git"
},
"homepage": "https://github.com/sigstore/sigstore-js/tree/main/packages/cli#readme",
"bugs": "https://github.com/sigstore/sigstore-js/issues",
"oclif": {
"bin": "sigstore",
"dirname": "sigstore",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " "
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
}
}