generated from JS-DevTools/template-node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.22 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.22 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
{
"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",
"@mcous/eslint-config": "^0.8.0",
"@mcous/prettier-config": "^0.4.0",
"@mcous/typescript-config": "^0.3.0",
"@types/command-line-args": "^5.2.3",
"@types/node": "^25.0.3",
"@types/validate-npm-package-name": "^4.0.2",
"@vitest/coverage-v8": "^4.0.16",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-plugin-jsdoc": "^62.5.0",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"prettier-plugin-jsdoc": "^1.8.0",
"rolldown": "1.0.0-rc.2",
"typescript": "^5.9.2",
"vitest": "^4.0.16",
"vitest-when": "^0.10.0"
},
"dependencies": {
"@types/semver": "^7.7.1",
"command-line-args": "6.0.1",
"semver": "7.7.3",
"tar": "7.5.7",
"validate-npm-package-name": "^7.0.1"
},
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"
}