-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.85 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
70
71
{
"name": "@appthreat/cdx-proto",
"version": "1.0.1",
"description": "Library to serialize/deserialize CycloneDX BOM with protocol buffers",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AppThreat/cdx-proto.git"
},
"bugs": {
"url": "https://github.com/AppThreat/cdx-proto/issues"
},
"scripts": {
"lint": "tsc --noEmit",
"build": "npx buf generate specification && tsc",
"prepare": "npm run build",
"docs": "typedoc source/index.ts --out docs --name cdx-proto --readme README.md"
},
"files": [
"dist",
"specification",
"docs"
],
"keywords": [
"cyclonedx",
"sbom",
"supply-chain",
"protobuf",
"protobom"
],
"author": "Team AppThreat <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@bufbuild/protobuf": "1.7.2"
},
"devDependencies": {
"@bufbuild/buf": "^1.30.1",
"@bufbuild/protoc-gen-es": "1.7.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"xo": "^0.58.0"
},
"xo": {
"ignores": [
"docs/*",
"contrib/*",
"specification/*"
],
"rules": {
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-implicit-any-catch": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/await-thenable": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/promise-function-async": "off",
"no-lone-blocks": "off"
}
}
}