knectron
Version:
Connect Electron to remote source such as Create React App.
64 lines • 1.56 kB
JSON
{
"name": "knectron",
"version": "0.1.16",
"description": "Connect Electron to remote source such as Create React App.",
"main": "dist/index.js",
"bin": {
"knectron": "bin/knectron"
},
"files": [
"bin",
"dist",
"README.md"
],
"scripts": {
"build": "rimraf ./dist && tsc",
"watch": "tsc -w",
"serve": "node ./test/server",
"connect": "node ./test/connect",
"test": "concurrently \"npm run serve\" \"npm run connect\" --kill-others",
"test:cli": "knectron ./test/main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blujedis/knectron.git"
},
"keywords": [
"Electron",
"Knectron",
"Remote",
"Create",
"React",
"App",
"Net",
"Web Socket"
],
"author": "Blujedis <blujedicorp@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/blujedis/knectron/issues"
},
"homepage": "https://github.com/blujedis/knectron#readme",
"devDependencies": {
"electron": "^12.0.1",
"express": "^4.17.1",
"@types/chai": "^4.2.15",
"@types/cross-spawn": "^6.0.2",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.35",
"chai": "^4.3.4",
"concurrently": "^6.0.0",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"spectron": "^14.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"import-local": "^3.0.2"
}
}