-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "polympics",
"version": "0.5.5",
"description": "Wrapper for the Polympics API in typescript.",
"main": "lib/index.js",
"browser": "dist/polympics.js",
"types": "lib/polympics/index.d.ts",
"scripts": {
"build": "webpack",
"build-docs": "typedoc polympics/index.ts --out docs --theme minimal --highlightTheme solarized-light --readme intro.md --tsconfig tsconfig.web.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polympics/typescript-wrapper.git"
},
"keywords": [
"polytopia",
"api-wrapper"
],
"author": "Artemis",
"license": "MIT",
"bugs": {
"url": "https://github.com/polympics/typescript-wrapper/issues"
},
"homepage": "https://github.com/polympics/typescript-wrapper#readme",
"devDependencies": {
"@types/node-fetch": "^2.5.8",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"btoa": "^1.2.1",
"node-fetch": "^2.6.1",
"typedoc": "^0.20.30",
"url-search-params-polyfill": "^8.1.1"
}
}