-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 1.77 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
{
"name": "rollup-license-plugin",
"version": "3.0.1",
"type": "module",
"packageManager": "[email protected]",
"description": "Extracts OSS license information of the npm packages in your rollup or vite output",
"keywords": [
"rollup",
"vite",
"build",
"artifact",
"oss",
"open source",
"compliance",
"copyright",
"license",
"licence",
"licenses",
"licences",
"scan",
"scanner",
"bom",
"bill of materials",
"plugin"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Christoph Werner <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/codepunkt/rollup-license-plugin"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prebuild": "node -e \"fs.rmSync('dist', { force: true, recursive: true })\"",
"build": "tsup src/index.ts",
"typescript": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "vitest --watch=false --coverage",
"update-test-snapshot": "NODE_OPTIONS='--no-warnings --loader=@esbuild-kit/esm-loader' c8 ava --update-snapshots --serial"
},
"dependencies": {
"get-npm-tarball-url": "^2.1.0",
"node-fetch": "^3.3.2",
"spdx-expression-validate": "^2.0.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rollup": "^4.24.4",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^2.1.4"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"c8": {
"reporter": [
"text",
"cobertura"
]
},
"files": [
"dist",
"CHANGELOG.md"
]
}