-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.08 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.08 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
{
"name": "@aklinker1/check",
"version": "2.4.0",
"keywords": [
"check",
"eslint",
"format",
"lint",
"oxfmt",
"prettier",
"publint",
"typescript"
],
"homepage": "https://github.com/aklinker1/check",
"license": "MIT",
"author": {
"name": "Aaron Klinker",
"email": "aaronklinker1+npm@gmail.com"
},
"repository": {
"url": "https://github.com/aklinker1/check"
},
"bin": {
"check": "bin/check.mjs"
},
"files": [
"bin",
"dist"
],
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsdown src/index.ts src/cli.ts",
"check": "bun src/cli.ts",
"prepack": "bun run build"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20251114.1",
"oxfmt": "^0.40.0",
"oxlint": "^1.22.0",
"publint": "^0.3.14",
"tsdown": "^0.15.9",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.2"
}