-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.45 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
{
"name": "@aminzer/dir-diff",
"version": "5.1.6",
"description": "Utility for recursive directory iteration and comparison",
"publishConfig": {
"access": "public"
},
"type": "module",
"keywords": [
"directory",
"folder",
"iteration",
"difference",
"comparison",
"compare"
],
"repository": {
"type": "git",
"url": "https://github.com/aminzer/dir-diff.git"
},
"license": "MIT",
"author": "aminzer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build:watch": "npm run build -- --watch",
"clean": "rimraf dist",
"codestyle": "run-p lint typescript:check",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run rebuild",
"rebuild": "run-s clean build",
"test": "tsx --test src/**/*.test.ts",
"typescript:check": "tsc --project tsconfig.json --noEmit"
},
"dependencies": {
"@aminzer/traverse-directory": "^1.2.5",
"stream-equal": "^2.0.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^24.5.2",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1"
},
"engines": {
"node": ">=22.0.0"
}
}