-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.52 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
{
"name": "@utkarsh2325/git-context",
"version": "0.6.1",
"description": "Know your Git state from inside Node.js.",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KDM-cli/git-context.git"
},
"bugs": {
"url": "https://github.com/KDM-cli/git-context/issues"
},
"homepage": "https://github.com/KDM-cli/git-context#readme",
"keywords": [
"git",
"context",
"typescript",
"deployment",
"release",
"ci"
],
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"gitcontext": "dist/cli.js",
"git-context": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --noEmit --project tsconfig.test.json",
"lint": "eslint src/ tests/",
"test": "tsx --test tests/git-context.test.ts tests/cli.test.ts tests/compatibility.test.ts tests/extended.test.ts tests/v060.test.ts",
"bench": "tsx benchmarks/context.ts",
"check": "npm run lint && npm run typecheck && npm test && npm run build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.17.0",
"eslint": "^10.11.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.70.1"
}
}