- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
114 lines (114 loc) · 4.17 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 4.17 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "pm-github",
"version": "2026.9.4",
"description": "GitHub Issues importer extension for pm-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/unbraind/pm-github.git"
},
"bugs": {
"url": "https://github.com/unbraind/pm-github/issues"
},
"homepage": "https://github.com/unbraind/pm-github#readme",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"manifest.json",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"test": "npm run build && npm run build:test && node --test test/*.test.ts",
"prepack": "npm run build",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck",
"docstring": "node scripts/docstring-gate.ts",
"audit:prod": "node --input-type=module -e \"import { spawnSync } from 'node:child_process'; import { devNull } from 'node:os'; const env = { ...process.env, npm_config_userconfig: devNull, NPM_CONFIG_USERCONFIG: devNull }; for (const key of Object.keys(env)) if (key.toLowerCase() === 'npm_config_allow_scripts') delete env[key]; const win = process.platform === 'win32'; const r = spawnSync(win ? 'npm.cmd' : 'npm', ['audit', '--omit=dev', '--ignore-scripts'], { stdio: 'inherit', env, shell: win }); process.exit(r.status ?? 1);\"",
"pack:dry-run": "npm pack --dry-run",
"verify:release-publish-attestation": "node scripts/verify-release-publish-attestation.ts",
"changelog:full": "pm-changelog --pm-root .agents/pm --pm-arg=--output-limit --pm-arg=unbounded --pm-arg=--output-budget --pm-arg=unbounded --mode replace --output CHANGELOG.md --all-release-tags --release-version-from-package --date-from-version --item-url-base https://github.com/unbraind/pm-github/blob/main/.agents/pm --respect-item-release",
"changelog:check": "npm run changelog:full -- --check",
"release:check": "npm run typecheck && npm run build && npm run docstring && npm run privacy && npm run coverage && npm run audit:prod && npm run pack:dry-run && npm run changelog:check && npm run verify:release-publish-attestation",
"prepublishOnly": "npm run release:check",
"release:notes": "pm-changelog --pm-root .agents/pm --pm-arg=--output-limit --pm-arg=unbounded --pm-arg=--output-budget --pm-arg=unbounded --stdout --since-previous-tag --until-release-tag --release-version-from-package --date-from-version --item-url-base https://github.com/unbraind/pm-github/blob/main/.agents/pm --respect-item-release --pm-bin ./node_modules/.bin/pm --github-step-summary",
"prepare": "node scripts/prepare-merge-driver.mjs",
"merge:install": "pm merge install",
"coverage": "npm run build && npm run build:test && node scripts/coverage-gate.ts",
"privacy": "node scripts/privacy-gate.ts"
},
"peerDependencies": {
"@unbrained/pm-cli": ">=2026.8.20"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@unbrained/pm-cli": "2026.8.28",
"pm-changelog": "2026.8.30",
"pm-ops": "^2026.8.17",
"typescript": "^7.0.2"
},
"keywords": [
"github",
"importer",
"issues",
"pm-cli",
"pm-extension",
"pm-package"
],
"license": "MIT",
"engines": {
"node": ">=22.18.0"
},
"author": "@unbraind",
"pm": {
"aliases": [
"github"
],
"extensions": [
"."
],
"catalog": {
"display_name": "GitHub Issues Importer",
"category": "sync",
"summary": "GitHub Issues importer extension for pm-cli",
"tags": [
"github",
"issues",
"import"
],
"links": {
"docs": "https://github.com/unbraind/pm-github#readme",
"npm": "https://www.npmjs.com/package/pm-github",
"repository": "https://github.com/unbraind/pm-github",
"report": "https://github.com/unbraind/pm-github/issues"
}
},
"docs": [
"README.md",
"CHANGELOG.md"
],
"examples": [
"README.md"
]
},
"publishConfig": {
"access": "public"
},
"coverageGate": {
"sources": [
"."
],
"tests": [
"test/*.test.ts"
],
"thresholds": {
"lines": 88,
"branches": 79,
"functions": 89
},
"ignore": []
}
}