-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 971 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 971 Bytes
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
{
"name": "@chr33s/git",
"version": "0.0.0",
"private": true,
"description": "Universal Git smart-HTTP protocol server, browser client & nix cli",
"license": "MIT",
"bin": {
".git": "./src/cli.ts"
},
"files": [
"src",
"tsconfig.json",
"!src/*.test.ts"
],
"type": "module",
"exports": {
"./client": "./src/client.ts",
"./server": "./src/server.ts"
},
"scripts": {
"check": "oxfmt --check && oxlint --type-aware --type-check",
"fix": "oxlint --type-aware --fix && oxfmt --write",
"postinstall": "npx wrangler types && npm run fix",
"test": "node --test --test-concurrency=1 --test-global-setup=src/test.helpers.ts"
},
"devDependencies": {
"@types/node": "25.5.0",
"esbuild": "0.27.4",
"oxfmt": "0.41.0",
"oxlint": "1.56.0",
"oxlint-tsgolint": "0.17.1",
"playwright": "1.58.2",
"typescript": "5.9.3",
"wrangler": "4.76.0"
},
"engines": {
"node": ">=24.12.0"
}
}