-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
48 lines (48 loc) · 1.45 KB
/
package.json
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
{
"name": "dugite",
"version": "3.0.0-rc4",
"description": "Elegant bindings for Git",
"main": "./build/lib/index.js",
"typings": "./build/lib/index.d.ts",
"scripts": {
"clean": "rimraf build",
"build": "yarn clean && tsc -p ./tsconfig.json && tsc -p ./examples/tsconfig.json",
"prepack": "yarn build && yarn test",
"postpublish": "git push --follow-tags",
"test": "node script/test.mjs",
"download-git": "node ./script/download-git.js",
"postinstall": "node ./script/download-git.js",
"prettify": "prettier \"{examples,lib,script,test}/**/*.{ts,js,mjs}\" --write",
"is-it-pretty": "prettier \"{examples,lib,script,test}/**/*.{ts,js,mjs}\" --check",
"update-embedded-git": "node ./script/update-embedded-git.js"
},
"engines": {
"node": ">= 20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desktop/dugite.git"
},
"author": "GitHub and contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/desktop/dugite/issues"
},
"homepage": "https://github.com/desktop/dugite#readme",
"dependencies": {
"progress": "^2.0.3",
"tar-stream": "^3.1.7"
},
"devDependencies": {
"@types/node": "20",
"@types/progress": "^2.0.1",
"@types/rimraf": "2.0.2",
"@types/temp": "^0.9.4",
"node-test-github-reporter": "^1.2.0",
"prettier": "^3.3.1",
"rimraf": "^5.0.7",
"temp": "^0.9.4",
"tsx": "^4.10.5",
"typescript": "^5.4.5"
}
}