-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.88 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "askless",
"version": "(TODO -> copy to 'dist' folder) 2.0.3",
"description": "A coherent Node.js Backend for Flutter. Askless is a framework to build websocket servers for Flutter Apps that lets you update your widgets in realtime by streaming data changes with WebSockets. Create your Flutter App without Firebase, with MySQL, PostgreSQL, or any database you want, handle WebSocket authentication, and quickly add audio and video calls with WebRTC!",
"keywords": [
"flutter",
"backend for flutter",
"flutter server",
"flutter with websockets",
"flutter with postgresql",
"flutter with mysql",
"flutter without firebase",
"flutter websocket",
"flutter websocket authentication",
"flutter webrtc",
"flutter video call",
"flutter audio call",
"flutter live video",
"flutter live audio",
"stream",
"realtime",
"framework",
"api",
"server",
"backend",
"widget"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"catalog-js": " node example/catalog-js/index.js",
"simple-chat-ts": "rimraf example/simple-chat-tscompiled && npx tsc example/simple-chat-ts/index.ts --outDir example/simple-chat-tscompiled && node example/simple-chat-tscompiled/example/simple-chat-ts/index.js",
"catalog-ts": "rimraf example/catalog-tscompiled && npx tsc example/catalog-ts/index.ts --outDir example/catalog-tscompiled && node example/catalog-tscompiled/example/catalog-ts/index.js",
"random-numbers-ts": "rimraf example/random-numbers-tscompiled && npx tsc example/random-numbers-ts/index.ts --outDir example/random-numbers-tscompiled && node example/random-numbers-tscompiled/example/random-numbers-ts/index.js",
"test": "tsc test/index.test.ts && node ./node_modules/mocha/bin/mocha"
},
"author": "Rodrigo João Bertotti <[email protected]>",
"license": "MIT",
"dependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^6.0.3",
"ws": "^8.14.1"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-transform-reserved-words": "^7.22.5",
"@babel/plugin-transform-typescript": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@types/mocha": "10.0.1",
"@types/node": "^20.5.9",
"@types/ws": "^8.5.5",
"babel-loader": "^9.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"esmify": "^2.1.1",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git://github.com/RodrigoBertotti/askless.git"
},
"bugs": {
"url": "https://github.com/RodrigoBertotti/askless/issues"
},
"homepage": "https://github.com/RodrigoBertotti/askless#readme",
"directories": {
"example": "example"
}
}