-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "@gd-com/utils",
"version": "5.0.0",
"description": "Serializer/deserializer utils for godot engine",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"lint": "ts-standard --fix src/**/*.ts",
"prettier": "prettier --write src/**/*.ts",
"test": "jest",
"test:clear": "jest --clearCache",
"publish-lib": "npm run build && npm publish",
"publish-beta": "npm run build && npm publish --tag beta",
"publish-dryrun": "npm run build && npm publish --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gd-com/utils.git"
},
"bugs": {
"url": "https://github.com/gd-com/utils/issues"
},
"homepage": "https://github.com/gd-com/utils#readme",
"devDependencies": {
"@types/node": "^16.11.10",
"jest": "^27.3.1",
"nyc": "^15.1.0",
"prettier": "^2.5.0",
"ts-standard": "^11.0.0",
"typescript": "^4.4.4"
},
"keywords": [
"library",
"godot",
"nodejs",
"tcp",
"udp",
"socket",
"websocket",
"helper"
],
"author": "Tilican",
"license": "MIT",
"contributors": [
"Xavier Sellier <[email protected]>"
],
"dependencies": {
"long": "^5.2.0"
},
"peerDependencies": {
"long": "^5.2.0"
}
}