-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 2.29 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": "gd.js",
"version": "0.2.13",
"description": "A Geometry Dash API wrapper for Node.js and the browser",
"main": "lib/entry.js",
"unpkg": "umd/index.js",
"jsdelivr": "umd/index.js",
"module": "esm/index.js",
"browser": {
"./esm/util/crypto/node-encdec.js": "./esm/util/crypto/encdec.js",
"./esm/node-fetch.js": "./esm/fetch.js",
"./esm/util/node-flate.js": "./esm/util/flate.js",
"./lib/util/crypto/node-encdec.js": "./lib/util/crypto/encdec.js",
"./lib/node-fetch.js": "./lib/fetch.js",
"./lib/util/node-flate.js": "./lib/util/flate.js",
"node-fetch": false,
"zlib": false,
"url": false
},
"types": "esm/index.d.ts",
"author": "Arjun Barrett",
"license": "MIT",
"scripts": {
"build": "yarn build:lib && yarn build:docs",
"build:lib": "yarn lint && tsc && tsc --project tsconfig.node.json && webpack",
"build:docs": "typedoc --mode file --out docs/ --disableSources src/index.ts",
"lint": "eslint --fix \"src/**/*.ts\"",
"prepack": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/101arrowz/gd.js"
},
"homepage": "https://101arrowz.github.io/gd.js",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/101arrowz/gd.js/issues"
},
"keywords": [
"geometry dash",
"geometry dash api",
"gd",
"api"
],
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@types/node": "^13.1.6",
"@types/node-fetch": "^2.5.4",
"@types/sha1": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"babel-loader": "^8.0.6",
"core-js": "3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"node-fetch": "^2.6.0",
"prettier": "^1.19.1",
"terser-webpack-plugin": "^2.3.5",
"typedoc": "^0.17.0-3",
"typescript": "^3.7.4",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"duration-converter": "^1.3.6",
"fflate": "^0.7.3",
"sha1": "^1.1.1"
}
}