-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.28 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.28 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
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
{
"name": "@jsdevtools/npm-publish",
"description": "Fast, easy publishing to NPM",
"version": "4.1.5",
"keywords": [
"github-action",
"npm",
"publish",
"version",
"bump"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://jstools.dev/npm-publish",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/npm-publish.git"
},
"type": "module",
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"bin": {
"npm-publish": "bin/npm-publish.js"
},
"files": [
"bin",
"lib",
"src",
"!__tests__"
],
"scripts": {
"all": "pnpm clean && pnpm build && pnpm format && pnpm coverage",
"clean": "rm -rf coverage lib dist e2e/fixture *.tgz",
"lint": "eslint . && prettier . --check",
"format": "eslint . --fix && prettier . --write",
"build": "concurrently -g 'pnpm:build:*'",
"build:dist": "rolldown src/action/main.ts --dir=dist --platform=node --treeshake --sourcemap",
"build:lib": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@emnapi/core": "^1.9.1",
"@emnapi/runtime": "^1.9.1",
"@mcous/eslint-config": "^0.9.0",
"@mcous/prettier-config": "^0.4.0",
"@mcous/typescript-config": "^0.4.0",
"@types/command-line-args": "^5.2.3",
"@types/node": "^25.5.0",
"@types/validate-npm-package-name": "^4.0.2",
"@vitest/coverage-v8": "^4.1.2",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"eslint-plugin-jsdoc": "^62.8.1",
"globals": "^17.4.0",
"prettier": "^3.7.4",
"prettier-plugin-jsdoc": "^1.8.0",
"rolldown": "1.0.0-rc.12",
"typescript": "^6.0.2",
"vitest": "^4.1.2",
"vitest-when": "^0.10.0"
},
"dependencies": {
"@types/semver": "^7.7.1",
"command-line-args": "6.0.2",
"semver": "7.7.4",
"tar": "7.5.13",
"validate-npm-package-name": "^7.0.1"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}