-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.18 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.18 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
{
"name": "pixelplacejs",
"description": "PixelPlace library that supports all packet types of PixelPlace. Supports multi-botting along side listening for any server event. ",
"version": "1.1.50",
"main": "src/index.js",
"scripts": {
"compile": "tsc",
"dev": "nodemon src/index.ts",
"clean_all_linux": "npm run clean_js_files && npm run clean_type_files",
"run-dev": "npm run format && tsc && node examples/drawImage.js",
"format": "prettier --config .prettierrc ./src/**/*.ts --write",
"pub": "tsc && npm version patch --force && npm publish && cd src && del /S *.js && cd ..",
"clean_js_files": "cd src && find . -name \"*.js\" -type f -delete;",
"clean_type_files": "cd src && find . -name \"*.d.ts\" -type f -delete;"
},
"dependencies": {
"@types/random-useragent": "^0.3.1",
"@types/winston": "^2.4.4",
"@types/ws": "^8.5.5",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"random-useragent": "^0.5.0",
"sharp": "^0.32.4",
"winston": "^3.10.0",
"ws": "^8.13.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}