-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) 路 1.47 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) 路 1.47 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
{
"name": "tinywhich",
"type": "module",
"description": "A tiny library for locating files in directories specified by `PATH`",
"version": "1.0.0",
"license": "MIT",
"author": "beequeue <adam@haglund.dev>",
"repository": "https://github.com/beeequeue/tinywhich",
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=16"
},
"files": [
"dist",
"CHANGELOG.md"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,json5,yaml,yml,css,scss,md}": [
"prettier --experimental-cli --write"
]
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/lint-staged"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "eslint",
"test": "node --test",
"typecheck": "tsc --noEmit --project tsconfig.json",
"prepare": "simple-git-hooks",
"prepack": "node scripts/clean-before-pack.mjs"
},
"devDependencies": {
"@antfu/eslint-config": "6.2.0",
"@changesets/changelog-github": "1.0.0-next.1",
"@changesets/cli": "3.0.0-next.1",
"@tsconfig/node22": "22.0.5",
"@tsconfig/strictest": "2.0.8",
"@types/node": "24.10.1",
"eslint": "9.39.1",
"lint-staged": "16.2.7",
"prettier": "3.6.2",
"publint": "0.3.15",
"simple-git-hooks": "2.13.1",
"tsdown": "0.16.6",
"typescript": "5.9.3"
}
}