-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.24 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
{
"name": "@taowang1993/gitfs",
"version": "0.1.0",
"description": "Enable AI to browse Git repos like local folders",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/taowang1993/gitfs.git"
},
"homepage": "https://github.com/taowang1993/gitfs#readme",
"bugs": {
"url": "https://github.com/taowang1993/gitfs/issues"
},
"keywords": [
"gitfs",
"git",
"filesystem",
"ai",
"agent",
"just-bash",
"github",
"gitlab",
"gitea"
],
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./persistent-cache": {
"types": "./dist/persistent-cache.d.ts",
"default": "./dist/persistent-cache.js"
},
"./providers/gitea": {
"types": "./dist/providers/gitea.d.ts",
"default": "./dist/providers/gitea.js"
},
"./providers/github": {
"types": "./dist/providers/github.d.ts",
"default": "./dist/providers/github.js"
},
"./providers/gitlab": {
"types": "./dist/providers/gitlab.d.ts",
"default": "./dist/providers/gitlab.js"
}
},
"bin": {
"gitfs": "dist/cli/gitfs.js"
},
"files": [
"dist",
"README.md",
"AGENTS.md",
"skills"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepare": "npm run build",
"prepack": "npm run build",
"test": "node --experimental-strip-types --test",
"cli": "node --experimental-strip-types ./src/cli/gitfs.ts",
"cli:dist": "node ./dist/cli/gitfs.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:tests": "tsc -p tsconfig.tests.json --noEmit",
"pack:dry-run": "npm pack --dry-run",
"check": "npm run typecheck && npm run typecheck:tests && npm run build && node ./dist/cli/gitfs.js --help > /dev/null",
"release:check": "npm run check && npm run pack:dry-run",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20.10"
}
}