-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "@code-game-project/client",
"version": "0.1.11",
"description": "JavaScript Client for CodeGame. It works in Node.js and most Browsers.",
"license": "MIT",
"author": {
"name": "Maxwell Matthis",
"email": "[email protected]"
},
"homepage": "https://github.com/code-game-project/javascript-client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/code-game-project/javascript-client.git"
},
"bugs": {
"url": "https://github.com/code-game-project/javascript-client/issues"
},
"type": "module",
"browser": "./dist/browser.js",
"module": "./dist/node.js",
"main": "./dist/node.js",
"directories": {
"lib": "dist"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"start": "echo \"Error: This is not meant to be run on its own. Please import it into your own program.\" && exit 1",
"build": "npx tsc --declaration",
"build-test": "npx tsc --project test.tsconfig.json",
"prepare": "npm run build"
},
"devDependencies": {
"@types/node": "^14.18.36",
"@types/ws": "^8.5.3",
"typescript": "^4.2.2"
},
"dependencies": {
"consola": "^2.15.3",
"env-paths": "^3.0.0",
"node-fetch": "^3.2.4",
"ws": "^7.4.6"
}
}