-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "protomini",
"version": "0.0.6",
"description": "Minimize and optimize and simplify and miniaturize your network packets for optimal speed and efficiency with ProtoMini.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"deploy": "npm version patch && git push --tags && git push",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/**/*.ts --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/car1ot/protomini.git"
},
"keywords": [
"networking",
"packets",
"optimization",
"compression",
"minification",
"encoding",
"decoding",
"data-transmission",
"performance",
"real-time",
"game-development"
],
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"author": "car1ot <[email protected] | https://github.com/car1ot/>",
"license": "MIT",
"bugs": {
"url": "https://github.com/car1ot/protomini/issues"
},
"homepage": "https://github.com/car1ot/protomini#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.3",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3"
}
}