-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 971 Bytes
/
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
{
"name": "screeps-all-api",
"version": "1.1.1",
"description": "A wrapper for game screeps apis",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ttxs25830/screeps-all-api.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"screeps",
"api"
],
"author": "ttxs25830 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ttxs25830/screeps-all-api/issues"
},
"homepage": "https://github.com/ttxs25830/screeps-all-api#readme",
"devDependencies": {
"@types/node": "^18.7.14",
"@types/ws": "^8.5.3",
"ts-node": "^10.9.1",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
},
"dependencies": {
"ws": "^8.9.0"
}
}