-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
104 lines (104 loc) · 2.29 KB
/
package.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "package-json-validator",
"version": "0.10.0",
"description": "Tools to validate package.json files.",
"keywords": [
"package.json",
"validator",
"package.json validator",
"lint",
"package.json linter"
],
"homepage": "https://github.com/JoshuaKGoldberg/package-json-validator#readme",
"bugs": {
"url": "https://github.com/JoshuaKGoldberg/package-json-validator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/package-json-validator"
},
"license": "MIT",
"author": {
"name": "Nick Sullivan",
"email": "[email protected]"
},
"contributors": [
{
"name": "Nick Sullivan",
"email": "[email protected]"
},
{
"name": "JoshuaKGoldberg",
"email": "[email protected]",
"url": "https://joshuakgoldberg.com"
}
],
"type": "commonjs",
"exports": {
".": {
"import": {
"type": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"type": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"./package.json": "./package.json"
},
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"bin": {
"pjv": "./lib/bin/pjv.mjs"
},
"files": [
"lib/"
],
"scripts": {
"build": "tsup",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"prepare": "husky",
"test": "vitest",
"type-check": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"yargs": "~17.7.2"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.4.0",
"@eslint/js": "9.21.0",
"@release-it/conventional-changelog": "10.0.0",
"@types/node": "22.13.0",
"@types/yargs": "17.0.33",
"all-contributors-for-repository": "0.4.0",
"eslint": "9.21.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-n": "17.16.1",
"eslint-plugin-regexp": "2.7.0",
"globals": "16.0.0",
"husky": "9.1.6",
"lint-staged": "15.4.0",
"prettier": "3.5.0",
"prettier-plugin-curly": "0.3.1",
"prettier-plugin-packagejson": "2.5.3",
"prettier-plugin-sh": "0.15.0",
"release-it": "18.1.1",
"tsup": "8.4.0",
"typescript": "5.8.2",
"typescript-eslint": "8.25.0",
"vitest": "3.0.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}