-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.23 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
115
116
117
118
119
120
{
"name": "@enbox/gitd",
"version": "0.9.7",
"description": "Decentralized forge (GitHub alternative) built on DWN protocols",
"type": "module",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"bin": {
"gitd": "./dist/esm/cli/main.js",
"git-remote-did": "./dist/esm/git-remote/main.js",
"git-remote-did-credential": "./dist/esm/git-remote/credential-main.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist",
"build:esm": "rimraf dist/esm dist/types && tsc -p tsconfig.json",
"build": "bun run clean && bun run build:esm",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"test:node": "bun test .spec.ts",
"changeset": "changeset",
"version": "changeset version && bun install",
"release": "bun run build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/enboxorg/gitd"
},
"license": "Apache-2.0",
"files": [
"dist",
"schemas",
"src"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js"
},
"./git-server": {
"types": "./dist/types/git-server/index.d.ts",
"import": "./dist/esm/git-server/index.js"
},
"./git-remote": {
"types": "./dist/types/git-remote/index.d.ts",
"import": "./dist/esm/git-remote/index.js"
},
"./indexer": {
"types": "./dist/types/indexer/index.d.ts",
"import": "./dist/esm/indexer/index.js"
},
"./github-shim": {
"types": "./dist/types/github-shim/index.d.ts",
"import": "./dist/esm/github-shim/index.js"
},
"./resolver": {
"types": "./dist/types/resolver/index.d.ts",
"import": "./dist/esm/resolver/index.js"
},
"./shims": {
"types": "./dist/types/shims/index.d.ts",
"import": "./dist/esm/shims/index.js"
},
"./shims/npm": {
"types": "./dist/types/shims/npm/index.d.ts",
"import": "./dist/esm/shims/npm/index.js"
},
"./shims/go": {
"types": "./dist/types/shims/go/index.d.ts",
"import": "./dist/esm/shims/go/index.js"
},
"./shims/oci": {
"types": "./dist/types/shims/oci/index.d.ts",
"import": "./dist/esm/shims/oci/index.js"
},
"./daemon": {
"types": "./dist/types/daemon/index.d.ts",
"import": "./dist/esm/daemon/index.js"
}
},
"keywords": [
"decentralized",
"dwn",
"git",
"forge",
"protocols"
],
"trustedDependencies": [
"classic-level"
],
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"@enbox/agent": "0.8.3",
"@enbox/api": "0.6.41",
"@enbox/auth": "0.6.49",
"@enbox/crypto": "0.1.1",
"@enbox/dids": "0.1.1",
"@enbox/dwn-sdk-js": "0.4.2",
"@enbox/dwn-sql-store": "0.0.27",
"kysely": "0.28.14"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "9.7.0",
"@stylistic/eslint-plugin": "^5.9.0",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"bun-types": "latest",
"eslint": "9.7.0",
"rimraf": "5.0.7",
"typescript": "5.5.4"
}
}