-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "ppfun-admin-api",
"version": "1.0.9",
"description": "Pixelplanet chat bot",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"author": "Pikod",
"license": "MIT",
"scripts": {
"prebuild": "npm run clean",
"prepack": "npm run build",
"start": "ts-node dist/index.js",
"clean": "rimraf ./dist configs/tsconfig.lib.tsbuildinfo",
"build": "npm run clean && tsc -p ./configs/tsconfig.lib.json",
"build:bot": "npm run clean && tsc --b configs/tsconfig.bot.json",
"dev": "tsnd --log-error --respawn ./bot/index.ts",
"lint": "tslint -p tsconfig.json",
"lint:bot": "tslint -p tsconfig.bot.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ByPikod/ppfun-admin-api"
},
"bugs": {
"url": "https://github.com/ByPikod/ppfun-admin-api/issues"
},
"homepage": "https://github.com/ByPikod/ppfun-admin-api#readme",
"dependencies": {
"ws": "^8.13.0"
},
"keywords": [
"pixelplanet",
"bot"
],
"devDependencies": {
"@types/node": "^20.4.2",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"files": [
"dist/**/*"
]
}