-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.2 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
{
"name": "secure-metadata",
"version": "0.1.1",
"description": "Deterministic, security-conscious metadata tooling for binary image formats.",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./browser": {
"types": "./dist/index.d.ts",
"import": "./dist/browser/secure-metadata.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup && tsup --config tsup.browser.config.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"fuzz:smoke": "npm run build --silent && node scripts/fuzz.mjs --seed 20260825 --runs 250 --max-bytes 512",
"fuzz": "npm run build --silent && node scripts/fuzz.mjs",
"typecheck": "tsc --noEmit",
"browser:smoke": "node scripts/browser-smoke.mjs",
"package:audit": "node scripts/release/audit-package.mjs",
"license:audit": "node scripts/release/audit-licenses.mjs",
"version:check": "node scripts/release/check-version.mjs",
"release:build": "node scripts/release/build-artifacts.mjs",
"release:repro": "node scripts/release/check-reproducibility.mjs",
"release:verify": "node scripts/release/verify-hashes.mjs",
"release:check": "node scripts/release/check-rc.mjs"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.13.3",
"eslint": "^10.9.0",
"fast-check": "^4.9.0",
"playwright": "^1.62.1",
"prettier": "^3.9.6",
"tsup": "^8.5.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.67.0",
"vitest": "^4.1.11"
},
"overrides": {
"esbuild": "0.28.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SecureToolsProject/Secure_Metadata.git"
},
"homepage": "https://github.com/SecureToolsProject/Secure_Metadata#readme",
"bugs": {
"url": "https://github.com/SecureToolsProject/Secure_Metadata/issues"
},
"publishConfig": {
"access": "public"
}
}