blob: 78e2bb3d38892de05540a7ac85e8b1116366fdef [file] [log] [blame]
simon20076982022-10-11 15:04:13 -04001{
2 "name": "jami-web-common",
3 "version": "1.0.0",
4 "license": "ISC",
5 "type": "module",
6 "main": "dist/index.js",
7 "module": "dist/index.js",
8 "types": "dist/index.d.ts",
9 "files": [
10 "dist/index.js"
11 ],
12 "scripts": {
13 "build": "tsc --build",
14 "clean": "rm -rf dist tsconfig.tsbuildinfo",
15 "lint": "eslint src",
16 "lint:fix": "npm run lint -- --fix",
17 "format": "prettier --write src",
18 "format:check": "prettier --check src"
19 },
20 "dependencies": {
21 "@types/express-session": "^1.17.5",
22 "@types/socket.io": "^3.0.2",
23 "typescript": "^4.8.4"
24 }
25}