-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.36 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
{
"name": "reproshot",
"version": "0.1.1",
"description": "Turn any failing command into a reproducible bug report.",
"type": "module",
"bin": {
"reproshot": "dist/cli.js"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"schema",
"README.md",
"LICENSE",
"SECURITY.md",
"docs/reproshot.svg",
"docs/capture-contract.md",
"docs/releasing.md",
"CONTRIBUTING.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node scripts/test.mjs",
"check": "npm run typecheck && npm test && npm run build",
"demo": "npm run build && node scripts/demo.mjs",
"prepack": "npm run build",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/t1ktakdev/ReproShot.git"
},
"bugs": "https://github.com/t1ktakdev/ReproShot/issues",
"homepage": "https://github.com/t1ktakdev/ReproShot#readme",
"keywords": [
"bug-report",
"reproduction",
"cli",
"debugging",
"developer-tools"
],
"license": "MIT",
"dependencies": {
"cross-spawn": "^7.0.6"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.19.0",
"prettier": "^3.6.2",
"typescript": "~5.9.3"
}
}