-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.14 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
{
"name": "gitignore",
"version": "1.0.0",
"description": "Generates .gitignore files from the templates in https://github.com/github/gitignore.",
"keywords": [
".gitignore",
"cli",
"github/gitignore"
],
"homepage": "https://github.com/BotTech/gitignore#readme",
"bugs": {
"url": "https://github.com/BotTech/gitignore/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BotTech/gitignore.git"
},
"license": "MIT",
"author": "Jason Pickens",
"type": "module",
"main": "./dist/index.js",
"bin": {
"gitignorer": "./dist/bin.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsx src/bin.ts",
"test": "node --test tests/**/*.test.ts"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"commander": "^13.1.0",
"env-paths": "^4.0.0",
"ndjson": "^2.0.0",
"simple-git": "^3.36.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typescript": "^5.8.0"
}
}