-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.54 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
{
"name": "matrix-rn-sdk",
"version": "0.0.1",
"description": "React Native wrapper for matrix-js-sdk",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && tsc -p tsconfig-build.json",
"clean": "rm -rf dist",
"lint": "eslint src/** spec/** && tsc --noEmit && prettier --check .",
"test": "jest"
},
"dependencies": {
"@react-native-community/async-storage": "^1.11.0",
"@types/websql": "^0.0.30",
"indexeddbshim": "^13.0.0",
"matrix-js-sdk": "^32.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/eslint-plugin": "^7.23.5",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"babel-cli": "^6.26.0",
"babel-jest": "^29.7.0",
"eslint": "8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-deprecate": "^0.8.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-matrix-org": "^1.2.1",
"eslint-plugin-unicorn": "^52.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}