forked from element-hq/element-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 927 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 927 Bytes
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
{
"name": "element-builder",
"version": "0.0.1",
"description": "A very minimal auto-builder for Element",
"main": "src/index.ts",
"license": "Apache-2.0",
"scripts": {
"lint": "yarn lint:types && yarn lint:js",
"lint:js": "eslint src",
"lint:types": "tsc --noEmit",
"build": "tsc"
},
"dependencies": {
"detect-libc": "^1.0.3",
"element-desktop": "vector-im/element-desktop#develop",
"rimraf": "^3.0.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/detect-libc": "^1.0.0",
"@types/node": "^18.7.14",
"@types/rimraf": "^3.0.2",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "7.18.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-matrix-org": "^0.4.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}