blob: 5838a84bb526841c7f3e7ec583bf3094b64d7777 [file] [log] [blame]
simon20076982022-10-11 15:04:13 -04001{
2 "name": "jami-web-common",
3 "version": "1.0.0",
simon20076982022-10-11 15:04:13 -04004 "type": "module",
5 "main": "dist/index.js",
6 "module": "dist/index.js",
7 "types": "dist/index.d.ts",
8 "files": [
9 "dist/index.js"
10 ],
11 "scripts": {
12 "build": "tsc --build",
13 "clean": "rm -rf dist tsconfig.tsbuildinfo",
14 "lint": "eslint src",
15 "lint:fix": "npm run lint -- --fix",
16 "format": "prettier --write src",
17 "format:check": "prettier --check src"
18 },
19 "dependencies": {
simon20076982022-10-11 15:04:13 -040020 "typescript": "^4.8.4"
21 }
22}