-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.31 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"type": "module",
"name": "rollup-plugin-sbom",
"version": "1.0.0",
"description": "A rollup and vite plugin to generate SBOMs for your application",
"packageManager": "[email protected]",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist",
"SECURITY.md"
],
"scripts": {
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:prettier": "prettier -l .",
"lint:eslint": "eslint .",
"dev": "unbuild --stub",
"build": "unbuild",
"build-fixtures": "pnpm --filter \"@fixtures/*\" run build",
"dev:test": "vitest watch",
"test": "vitest run --coverage",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"prepublishOnly": "pnpm build",
"prettier": "prettier -w .",
"release": "semantic-release"
},
"lint-staged": {
"*.{ts,js,json,md}": "prettier --write",
"*.{ts,js}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/janbiasi/rollup-plugin-sbom.git"
},
"keywords": [
"vite-plugin",
"rollup-plugin",
"sbom",
"cyclonedx"
],
"author": "Jan Biasi (https://github.com/janbiasi)",
"contributors": [
"Jan Kott (https://github.com/boostvolt)"
],
"license": "MIT",
"dependencies": {
"@cyclonedx/cyclonedx-library": "7.0.0",
"normalize-package-data": "7.0.0"
},
"peerDependencies": {
"rollup": "^3 || ^4"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "9.16.0",
"@types/node": "22.10.1",
"@types/normalize-package-data": "^2.4.4",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"@vitest/coverage-v8": "2.1.8",
"ajv": "8.17.1",
"ajv-formats": "3.0.1",
"eslint": "9.16.0",
"fast-xml-parser": "4.5.0",
"globals": "15.13.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.4.2",
"rollup": "4.28.1",
"semantic-release": "24.2.0",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0",
"unbuild": "2.0.0",
"vitest": "2.1.8"
}
}