-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.42 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@extension.dev/artifact-integrity",
"description": "Trust what you ship: download and verify browser extension artifacts (zip structure, manifest, metadata) and emit a deterministic JSON report for CI release gates.",
"keywords": [
"browser-extension",
"chrome-extension",
"artifact",
"artifact-integrity",
"verification",
"integrity-check",
"checksum",
"release-gate",
"security",
"supply-chain",
"provenance",
"ci",
"github-actions",
"manifest-v3"
],
"version": "0.5.2",
"license": "Apache-2.0",
"author": {
"name": "Cezar Augusto",
"email": "hello@extension.dev",
"url": "https://cezaraugusto.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extensiondev/artifact-integrity.git"
},
"bugs": {
"url": "https://github.com/extensiondev/artifact-integrity/issues"
},
"homepage": "https://github.com/extensiondev/artifact-integrity#readme",
"engines": {
"node": ">=20.18"
},
"packageManager": "pnpm@10.19.0",
"exports": {
".": {
"types": "./dist/module.d.ts",
"import": "./dist/module.js",
"require": "./dist/module.js"
}
},
"bin": {
"extension-artifact-integrity": "bin/runner.cjs"
},
"main": "./dist/module.js",
"types": "./dist/module.d.ts",
"files": [
"dist",
"bin",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist",
"format": "prettier --write \"**/*.{ts,tsx,md,js,json}\"",
"lint": "eslint .",
"watch": "rslib build --watch",
"compile": "rslib build",
"test": "vitest run",
"build": "pnpm run compile",
"prepack": "node scripts/readme-logo-width.mjs npm",
"postpack": "node scripts/readme-logo-width.mjs github",
"prepublishOnly": "pnpm run test && pnpm run compile"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"adm-zip": "^0.6.0"
},
"peerDependencies": {},
"peerDependenciesMeta": {},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rslib/core": "^0.23.2",
"@types/adm-zip": "^0.5.8",
"@types/node": "^26.1.1",
"eslint": "^10.7.0",
"globals": "^17.7.0",
"prettier": "^3.9.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10"
},
"pnpm": {
"overrides": {
"brace-expansion": "^5.0.8"
}
}
}