Files
openim-sdk-electron/package.json
2024-05-22 17:45:17 +08:00

87 lines
2.3 KiB
JSON

{
"name": "@openim/node-client-sdk",
"version": "1.0.9",
"description": "open im sdk for node",
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"assets/**/*"
],
"scripts": {
"build": "rimraf lib && rollup -c && tsc-alias",
"cm": "cz",
"lint": "eslint ./src/ --fix",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenIMSDK/open-im-sdk-node.git"
},
"license": "MIT",
"author": {
"name": "blooming",
"email": "blooming2477@gmail.com",
"url": "https://github.com/Bloomingg"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"openim"
],
"bugs": {
"url": "https://github.com/OpenIMSDK/open-im-sdk-node/issues"
},
"homepage": "https://github.com/OpenIMSDK/open-im-sdk-node#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/ffi-napi": "^4.0.10",
"@types/node": "^12.20.55",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"electron": "^29.2.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.2.0",
"lint-staged": "^10.5.4",
"open-im-sdk-wasm": "^3.5.3-alpha.3",
"prettier": "^2.2.1",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^19.0.2",
"tsc-alias": "^1.7.0",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"dependencies": {
"koffi": "^2.8.0",
"uuid": "^9.0.0"
},
"peerDependencies": {
"electron": ">=12.0.0",
"open-im-sdk-wasm": "^3.5.3-alpha.5"
}
}