-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "spiget-api",
"version": "1.0.3",
"description": "A client for Spiget that allows you to get the authors, resources and categories from spigotmc.org",
"main": "./dist/index.js",
"scripts": {
"build": "tsc && npm run build:browser",
"build:browser": "npx webpack",
"prepare": "npm run build",
"test": "jest"
},
"browser": {
"spiget-api": "./dist/spiget-api.umd.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VeguiDev/spiget-api.git"
},
"files": [
"./dist/**/*"
],
"keywords": [
"spigot",
"spiget",
"api",
"client",
"cli",
"minecraft",
"download",
"plugins",
"resources",
"authors"
],
"author": "VeguiDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/VeguiDev/spiget-api/issues"
},
"homepage": "https://github.com/VeguiDev/spiget-api#readme",
"dependencies": {
"axios": "^0.27.2",
"buffer": "^6.0.3",
"stream": "^0.0.2"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.13",
"jest": "^28.1.3",
"jest-junit": "^14.0.1",
"ts-jest": "^28.0.8",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}