-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "userflow-electron",
"version": "3.0.1",
"description": "Userflow Electron integration",
"homepage": "https://github.com/userflow/userflow-electron",
"main": "dist/userflow-electron.umd.js",
"module": "dist/userflow-electron.es.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && rollup -c rollup.config.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/userflow/userflow-electron.git"
},
"bugs": "https://github.com/userflow/userflow-electron/issues",
"author": "Userflow <[email protected]> (https://userflow.com)",
"license": "MIT",
"private": false,
"dependencies": {
"ws": "^7.2.0"
},
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"prettier": "^2.2.1",
"rollup": "^2.33.3",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.1.3"
},
"peerDependencies": {
"userflow.js": "^2.1.0"
}
}