-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.19 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
{
"name": "git-file-fetch",
"version": "0.2.1",
"description": "Fetch specific files from remote git repos and track them locally.",
"main": "dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"bin": {
"git-file-fetch": "dist/index.js"
},
"scripts": {
"start": "ts-node --esm src/index.ts",
"build": "npx tsc -p tsconfig.json && npx tsc -p tsconfig.plugin.json && pnpm run build:plugin-assets",
"build:plugin-assets": "node -e \"require('fs').copyFileSync('plugin/executors.json', 'plugin/executors.json')\" && node -e \"require('fs').copyFileSync('plugin/executors/fetch/schema.json', 'plugin/executors/fetch/schema.json')\"",
"typecheck": "npx tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:md": "markdownlint . --ignore node_modules",
"lint:md:fix": "markdownlint . --ignore node_modules --fix",
"test:smoke": "node dist/index.js \"https://github.com/octokit/core.js.git@main:LICENSE\" --dry-run --json",
"prepack": "pnpm run build"
},
"keywords": [
"git",
"file",
"fetch",
"devtool",
"remote",
"cli"
],
"author": "Joshua Boys",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/joshuaboys/git-file-fetch.git"
},
"bugs": {
"url": "https://github.com/joshuaboys/git-file-fetch/issues"
},
"homepage": "https://github.com/joshuaboys/git-file-fetch#readme",
"executors": "./plugin/executors.json",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/node": "^22.17.1",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"markdownlint-cli": "^0.45.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"github-cli": "^0.0.5"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist",
"plugin"
],
"packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34",
"publishConfig": {
"access": "public"
}
}