-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.15 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
{
"name": "extra-life-ts",
"version": "0.5.0",
"description": "A typed wrapper for the Extra Life API",
"repository": {
"type": "git",
"url": "https://github.com/HeroesPlayGames/extra-life-ts.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prepare": "husky install",
"dev": "tsup --watch",
"lint:staged": "pretty-quick --staged",
"prepublish": "tsup",
"build": "tsup"
},
"keywords": [
"extra-life",
"api",
"typescript"
],
"author": {
"name": "Marcelo Alves",
"url": "https://github.com/marceloalves"
},
"license": "ISC",
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"tsup": {
"entry": [
"src/index.ts"
],
"dts": true,
"minify": true,
"splitting": false,
"sourcemap": true,
"clean": true
},
"engines": {
"node": ">=16"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"qss": "^3.0.0"
},
"devDependencies": {
"husky": "^7.0.4",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}