created package.json, main.js and index.html files
This commit is contained in:
parent
b3c993d9e3
commit
0706f8331b
0
index.html
Normal file
0
index.html
Normal file
9
main.js
Normal file
9
main.js
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
const { app, BrowserWindow } = require('electron');
|
||||||
|
const path = require('path');
|
||||||
|
const url = require('url');
|
||||||
|
|
||||||
|
let win;
|
||||||
|
|
||||||
|
function createWindow() {
|
||||||
|
win = new BrowserWindow({ width: 800, height: 600 });
|
||||||
|
}
|
23
package.json
Normal file
23
package.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "documentit",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "tool for documenting online harassment",
|
||||||
|
"main": "main.js",
|
||||||
|
"dependencies": {
|
||||||
|
"electron": "^1.7.10"
|
||||||
|
},
|
||||||
|
"devDependencies": {},
|
||||||
|
"scripts": {
|
||||||
|
"start": "documentit ."
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/kkemmis/documentit.git"
|
||||||
|
},
|
||||||
|
"author": "Kathy Kemmis",
|
||||||
|
"license": "ISC",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/kkemmis/documentit/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/kkemmis/documentit#readme"
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user