This repository has been archived by the owner on Mar 18, 2022. It is now read-only.
generated from UndiedGamer/typescript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.9 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
{
"name": "brawlstats",
"version": "1.0.1",
"description": "A simple API Wrapper for Brawl Stars",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpecteraLabs/brawlstats"
},
"scripts": {
"build": "tsup",
"test": "jest",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"sversion": "standard-version",
"prepublishOnly": "yarn build",
"commit": "git-cz",
"cz": "git-cz",
"watch": "tsup --watch",
"prepublish": "yarn build"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SpecteraLabs/brawlstats/issues"
},
"homepage": "https://github.com/SpecteraLabs/brawlstats#readme",
"keywords": [
"api",
"node",
"brawlstars",
"bs",
"wrapper"
],
"author": "@undied",
"packageManager": "yarn@3.2.0",
"prettier": "@sapphire/prettier-config",
"devDependencies": {
"@babel/core": "7.17.7",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-private-methods": "7.16.11",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@commitlint/cli": "16.2.3",
"@commitlint/config-angular": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@commitlint/parse": "^16.2.1",
"@sapphire/eslint-config": "4.3.0",
"@sapphire/prettier-config": "1.4.0",
"@sapphire/ts-config": "3.3.2",
"@types/jest": "^27.4.1",
"@types/node": "17.0.18",
"babel-jest": "27.5.1",
"dotenv": "16.0.0",
"eslint": "8.11.0",
"husky": "7.0.4",
"jest": "27.5.1",
"pinst": "3.0.0",
"prettier": "2.6.0",
"standard-version": "^9.3.2",
"tsup": "5.12.1",
"typescript": "4.6.2"
},
"dependencies": {
"@discordjs/collection": "^0.5.0",
"@sapphire/fetch": "^2.3.0",
"colorette": "^2.0.16"
}
}