-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.48 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
{
"name": "git-publish",
"version": "0.0.0-semantic-release",
"description": "Publish your npm package to a GitHub repository branch",
"keywords": [
"npm",
"publish",
"git",
"github",
"branch",
"branches"
],
"license": "MIT",
"repository": "privatenumber/git-publish",
"funding": "https://github.com/privatenumber/git-publish?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"type": "module",
"bin": "dist/index.js",
"packageManager": "pnpm@10.29.3",
"scripts": {
"build": "pkgroll --minify --clean-dist --export-condition=node",
"lint": "lintroll --cache",
"type-check": "tsc",
"test": "node tests/index.ts",
"prepack": "pnpm build && clean-pkg-json",
"prepare": "skills-npm"
},
"dependencies": {
"@manypkg/get-packages": "^3.1.0",
"@manypkg/tools": "^2.1.2",
"fast-glob": "^3.3.3",
"gunzip-maybe": "^1.4.2",
"tar-fs": "^3.1.2",
"tasuku": "^2.3.0"
},
"devDependencies": {
"@types/gunzip-maybe": "^1.4.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.2",
"@types/npmcli__package-json": "^4.0.4",
"@types/tar-fs": "^2.0.4",
"byte-size": "^9.0.1",
"clean-pkg-json": "^2.0.0",
"cleye": "^2.6.0",
"find-up-simple": "^1.0.1",
"fs-fixture": "^2.16.0",
"js-yaml": "^4.2.0",
"kolorist": "^1.8.0",
"lintroll": "^1.30.2",
"manten": "^2.0.0",
"nano-spawn": "^2.1.0",
"pkgroll": "^2.27.1",
"skills-npm": "^1.2.0",
"terminal-link": "^5.0.0",
"typescript": "^6.0.3"
}
}