-
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.6 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.6 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": "pack-config-diff",
"version": "0.1.0",
"description": "Semantic configuration differ for webpack and rspack projects",
"keywords": [
"webpack",
"rspack",
"config",
"diff",
"compare",
"configuration"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shakacode/pack-config-diff.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"bin": {
"pack-config-diff": "./bin/pack-config-diff"
},
"files": [
"dist/",
"bin/pack-config-diff"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"peerDependencies": {
"ts-node": ">=10"
},
"peerDependenciesMeta": {
"ts-node": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^29.0.0",
"@types/js-yaml": "^4.0.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.0.0",
"lefthook": "^2.1.4",
"prettier": "^3.8.1",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.57.1"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"hooks:install": "lefthook install",
"test": "jest",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"prepublishOnly": "npm run build",
"release": "bash scripts/release.sh",
"release:dry-run": "bash scripts/release.sh --dry-run"
}
}