This repository was archived by the owner on Jun 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "tinode-sdk",
"version": "1.0.0",
"description": "Typescript implementation of tinode js client",
"main": "index.js",
"scripts": {
"build:browser": "webpack",
"build:node": "tsc",
"docs": "typedoc --out ./documentation ./src --mode file --tsconfig ./tsconfig.json --theme minimal",
"build": "npm run build:browser && npm run build:node",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/my-script.ts",
"test": "jest",
"refresh": "rm -rf ./node_modules && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinode/typescript-sdk.git"
},
"keywords": [
"ts",
"tinode",
"chat",
"sdk",
"js"
],
"author": "Moein Hosseini",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tinode/typescript-sdk/issues"
},
"homepage": "https://github.com/tinode/typescript-sdk#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"awesome-typescript-loader": "^5.2.1",
"jest": "^26.6.3",
"nodemon": "^2.0.4",
"terser-webpack-plugin": "^5.0.3",
"ts-jest": "^26.4.4",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"typedoc": "^0.19.2",
"typescript": "^3.9.7",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0",
"ws": "^7.3.1",
"xmlhttprequest": "^1.8.0"
},
"dependencies": {
"rxjs": "^6.6.0"
}
}