-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "example-npm-package",
"version": "0.0.0",
"description": "Learning how modern npm package work.",
"repository": {
"type": "git",
"url": "https://github.com/markEHVN/example-npm-package"
},
"license": "MIT",
"author": {
"email": "[email protected]"
},
"type": "module",
"main": "./lib/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsup",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"lint:knip": "knip",
"prepare": "husky",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@release-it/conventional-changelog": "9.0.3",
"@types/eslint__js": "8.42.3",
"@types/node": "22.10.1",
"@vitest/coverage-v8": "2.1.8",
"@vitest/eslint-plugin": "1.1.14",
"console-fail-test": "0.5.0",
"eslint": "9.17.0",
"eslint-plugin-n": "17.15.0",
"husky": "9.1.7",
"knip": "5.41.0",
"lint-staged": "15.2.10",
"prettier": "3.4.2",
"prettier-plugin-curly": "0.3.1",
"prettier-plugin-packagejson": "2.5.6",
"prettier-plugin-sh": "0.14.0",
"release-it": "17.10.0",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0",
"vitest": "2.1.8"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"engines": {
"node": ">=18.3.0"
},
"publishConfig": {
"provenance": true
}
}