-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@openim/electron-client-sdk",
"version": "1.1.4",
"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/openim-sdk-electron.git"
},
"license": "MIT",
"author": {
"name": "blooming",
"email": "[email protected]",
"url": "https://github.com/Bloomingg"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"openim"
],
"bugs": {
"url": "https://github.com/OpenIMSDK/openim-sdk-electron/issues"
},
"homepage": "https://github.com/OpenIMSDK/openim-sdk-electron#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@openim/wasm-client-sdk": "^3.8.2-1",
"@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",
"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": {
"@openim/wasm-client-sdk": "^3.8.2-1",
"electron": ">=12.0.0"
}
}