blob: 975c61df24af00b44b43e1502412caf57d4a0dfd [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": {
simon20076982022-10-11 15:04:13 -040021 "typescript": "^4.8.4"
22 }
23}