-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.56 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
{
"name": "@cveproject/cve-validation-library",
"version": "0.0.0",
"description": "Official CVE Validation Library for validating CVE Records",
"keywords": [
"cve",
"cve-validation",
"cve-records"
],
"homepage": "https://github.com/CVEProject/cve-validation-library#readme",
"bugs": {
"url": "https://github.com/CVEProject/cve-validation-library/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CVEProject/cve-validation-library.git"
},
"license": "CC0-1.0",
"author": "ann-linh-mitre",
"engines": {
"node": ">= 24.13.0 < 25"
},
"type": "module",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsx watch main.js",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"test": "npm run typecheck",
"test:local": "npm run build && node scripts/test-local.mjs",
"warning:stub": "npm run build && node scripts/create-stub-warning.mjs"
},
"devDependencies": {
"@types/node": "^25.9.1",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"dependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"express-validator": "^7.3.2",
"packageurl-js": "^2.0.1"
},
"overrides": {
"fast-uri": ">=3.1.5",
"esbuild": ">=0.28.1"
}
}