UNPKG

nativescript-matrix-sdk

Version:

Native Matrix SDK integration for NativeScript

89 lines (88 loc) 2.16 kB
{ "name": "nativescript-matrix-sdk", "version": "0.1.1", "description": "Native Matrix SDK integration for NativeScript", "main": "index.js", "typings": "index.d.ts", "nativescript": { "platforms": { "ios": "6.0.0", "android": "6.0.0" } }, "repository": { "type": "git", "url": "https://gitlab.com/ascade/nativescript-matrix-sdk.git" }, "keywords": [ "NativeScript", "Matrix", "Chat", "SDK", "iOS", "Android" ], "author": { "name": "admin.ascade", "url": "https://gitlab.com/ascade" }, "license": "Apache-2.0", "scripts": { "build": "tsc", "watch": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "prepare": "npm run build", "prepublishOnly": "npm run build", "preversion": "npm run lint && npm test", "version": "git add -A src", "postversion": "git push && git push --tags", "clean": "rimraf dist coverage", "docs": "typedoc --out docs src", "check-types": "tsc --noEmit", "format": "prettier --write \"src/**/*.ts\"", "validate": "npm run lint && npm run test && npm run check-types", "setup": "rm -f package-lock.json && npm install --legacy-peer-deps && npm shrinkwrap" }, "dependencies": { "@nativescript/core": "^8.0.0" }, "devDependencies": { "@nativescript/types": "^8.0.0", "@types/jest": "^29.5.14", "jest": "^29.7.0", "ts-jest": "^29.2.6", "typescript": "~4.8.4", "eslint": "^8.0.0", "@typescript-eslint/parser": "^5.0.0", "@typescript-eslint/eslint-plugin": "^5.0.0", "prettier": "^2.8.0", "rimraf": "^5.0.0", "typedoc": "^0.24.0" }, "ios": { "name": "MatrixSDK", "podspecs": { "MatrixSDK": "^0.28.1" } }, "android": { "dependencies": { "org.matrix.android.sdk:matrix-sdk-android": "1.6.2" } }, "files": [ "index.js", "index.d.ts", "index.ts", "src/", "platforms/", "common/", "LICENSE", "README.md", "DOCUMENTATION.md" ] }