-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.28 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
67
68
69
70
{
"name": "@aklinker1/check",
"version": "1.4.5",
"repository": {
"type": "git",
"url": "https://github.com/aklinker1/check"
},
"homepage": "https://github.com/aklinker1/check",
"author": {
"name": "Aaron Klinker",
"email": "aaronklinker1+npm@gmail.com"
},
"keywords": [
"lint",
"format",
"check",
"eslint",
"publint",
"prettier",
"typescript"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"check": "bin/check.mjs"
},
"scripts": {
"build": "bunx --bun unbuild",
"check": "bun src/cli.ts",
"prepublish": "bun run build"
},
"dependencies": {
"@antfu/utils": "^0.7.7",
"citty": "^0.1.6",
"ci-info": "^4.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"publint": "^0.2.7",
"unbuild": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"unbuild": {
"entries": [
{
"builder": "mkdist",
"input": "./src/",
"outDir": "./dist"
}
],
"declaration": true
},
"changelog": {
"excludeAuthors": [
"aaronklinker1@gmail.com"
]
}
}