-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "dir-files",
"version": "1.1.0",
"description": "micro library to get files from a path with middlewares",
"type": "module",
"main": "./dist/dir-files.js",
"module": "./dist/dir-files.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/dir-files.js",
"default": "./dist/dir-files.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"check": "npm run lint && npm run typecheck && npm run test && npm run build",
"example": "node examples/recursive.js",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arijs/dir-files.git"
},
"keywords": [
"dir",
"files",
"ls",
"micro",
"middleware"
],
"author": "Rafael Hengles",
"license": "MIT",
"bugs": {
"url": "https://github.com/arijs/dir-files/issues"
},
"files": [
"dist",
"src",
"README.md",
"CHANGELOG.md"
],
"homepage": "https://github.com/arijs/dir-files#readme",
"dependencies": {
"micromatch": "^4.0.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/micromatch": "^4.0.10",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vite-plugin-dts": "^5.0.3",
"vitest": "^4.1.10"
}
}