-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
57 lines (57 loc) · 1.55 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": "neffos.js",
"type": "module",
"version": "0.1.34",
"description": "javascript client for the modern neffos websocket framework",
"keywords": [
"neffos",
"realtime",
"framework",
"websocket",
"events",
"iris",
"iris web framework"
],
"scripts": {
"toJS": "tsc --project tsconfig.json",
"minify": "minify --sourceType=module ./dist/neffos.js --outFile ./dist/neffos.min.js",
"dtslint": "dtslint --onlyTestTsNext ./types",
"build": "npm run-script dtslint && npm run-script toJS && npm run-script minify",
"build-fast": "npm run-script toJS",
"lint": "node_modules/.bin/goodparts ./src"
},
"source": "./src/neffos.ts",
"types": "./types/index.d.ts",
"main": "./dist/neffos.js",
"files": [
"LICENSE",
"dist/",
"types/"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kataras/neffos.js"
},
"bugs": {
"url": "https://github.com/kataras/neffos.js/issues"
},
"author": "Gerasimos Maropoulos (@kataras)",
"contributors": [
{
"name": "Gerasimos Maropoulos (@kataras)",
"email": "[email protected]"
}
],
"devDependencies": {
"@types/node": "18.11.18",
"@types/ws": "^8.5.4",
"babel-minify": "^0.5.2",
"dtslint": "^4.2.1",
"goodparts": "^1.3.0",
"typescript": "^4.9.4"
},
"dependencies": {
"ws": "^8.12.0"
}
}