-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "@github/dependency-submission-toolkit",
"version": "2.0.4",
"description": "A TypeScript library for creating dependency snapshots.",
"homepage": "https://github.com/github/dependency-submission-toolkit",
"bugs": {
"url": "https://github.com/github/dependency-submission-toolkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/dependency-submission-toolkit.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"workspaces": ["example"],
"scripts": {
"all": "npm run type-check && npm run build && npm run ci && npm run test",
"build": "tsup",
"ci": "biome ci .",
"format": "biome format --write .",
"lint": "biome lint --apply .",
"prepare": "npm run build",
"test": "vitest run src",
"test:watch": "vitest watch src",
"type-check": "tsc"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/request-error": "^6.1.1",
"@octokit/webhooks-types": "^7.5.0",
"packageurl-js": "^1.2.1"
},
"devDependencies": {
"@biomejs/biome": "^1.7.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.12.7",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
}
}