-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 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
{
"name": "npm-package-existence-checker",
"description": "GitHub Action to check package existence for npm Trusted Publishing",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"private": true,
"homepage": "https://github.com/directus/npm-package-existence-checker",
"repository": {
"type": "git",
"url": "git+https://github.com/directus/npm-package-existence-checker.git"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"keywords": [
"npm",
"trusted publishing",
"actions"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "rolldown --config rolldown.config.ts",
"dev": "pnpx @github/local-action . src/main.ts .env",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@actions/core": "1.11.1",
"fast-glob": "3.3.3",
"js-yaml": "4.1.1"
},
"devDependencies": {
"@directus/tsconfig": "3.0.0",
"@eslint/js": "9.39.1",
"@types/js-yaml": "4.0.9",
"@types/node": "24.10.1",
"@vitest/coverage-v8": "4.0.15",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"globals": "16.5.0",
"husky": "9.1.7",
"prettier": "3.7.4",
"rolldown": "1.0.0-beta.53",
"typescript": "5.9.3",
"typescript-eslint": "8.48.1",
"vitest": "4.0.15"
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=24",
"pnpm": ">=10 <11"
}
}