-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "liteprotocol",
"version": "0.1.5",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"test": "jest",
"build": "bash -c \"rm -rf ./dist\" && tsc"
},
"keywords": [
"lightweight",
"serialization",
"deserialization",
"typescript"
],
"author": "XiYang6666",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/UmikaSoft/LiteProtocol.git"
},
"bugs": {
"url": "https://github.com/UmikaSoft/LiteProtocol/issues"
},
"homepage": "https://github.com/UmikaSoft/LiteProtocol#readme",
"description": "Lightweight serialization and deserialization library written in TypeScript",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0"
}
}