-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 983 Bytes
/
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
{
"name": "tson-rpc",
"version": "0.0.4",
"description": "Connect objects anywhere in pairs like quantum entanglement.",
"main": "dist/cjs/index.js",
"types": "src/index.ts",
"module": "dist/esm/index.js",
"scripts": {
"test": "npx ts-node tests/test.ts",
"clean": "rm -rf dist",
"build": "npm run build:esm&&npm run build:cjs",
"build:cjs": "npx tsc",
"build:esm": "npx tsc -p tsconfig.esm.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/System233/tson-rpc.git"
},
"keywords": [
"tson-rpc",
"TSON",
"proxy",
"remote",
"object",
"RPC"
],
"author": "System233",
"license": "MIT",
"bugs": {
"url": "https://github.com/System233/tson-rpc/issues"
},
"homepage": "https://github.com/System233/tson-rpc#readme",
"dependencies": {
"tson-serializer": "^1.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/uuid": "^8.3.4",
"typescript": "^4.6.4"
}
}