-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.49 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
{
"name": "fantasy-premier-league-api",
"version": "0.5.0",
"description": "A type-safe wrapper for the Fantasy Premier League API.",
"repository": {
"type": "git",
"url": "https://github.com/FarazPatankar/fantasy-premier-league-api"
},
"license": "MIT",
"author": {
"name": "Faraz Patankar",
"email": "farazpatankar@gmail.com"
},
"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"
},
"dependencies": {
"ofetch": "^1.3.4",
"valibot": "^0.36.0"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@release-it/conventional-changelog": "^8.0.1",
"@vitest/coverage-v8": "^2.0.2",
"eslint": "^9.7.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.0.11",
"knip": "^5.26.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"prettier-plugin-curly": "^0.2.1",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-sh": "^0.14.0",
"release-it": "^17.6.0",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0",
"vitest": "^2.0.2"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}