-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.49 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "dotignorefile",
"version": "0.0.6",
"packageManager": "[email protected]",
"description": "An ignore file not to be ignored",
"author": {
"name": "Ted Klingenberg",
"email": "[email protected]",
"url": "https://doseofted.me/"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/doseofted/dotignorefile.git"
},
"bugs": {
"url": "https://github.com/doseofted/dotignorefile/issues"
},
"publishConfig": {
"provenance": true
},
"keywords": [
"ignore",
"ignorefile",
"gitignore",
"dockerignore",
"npmignore",
"prettierignore",
"eslintignore"
],
"license": "MIT",
"type": "module",
"module": "dist/index.js",
"bin": "dist/bin.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup --config build.config.ts",
"dev": "tsup --watch --config build.config.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"cli": "node dist/bin.js",
"test": "vitest",
"changeset": "changeset"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"prettier": "3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.2"
},
"files": [
"dist"
],
"dependencies": {
"zx": "^7.2.3"
}
}