TimeChain/package.json
Jason Tudisco c617c63510 Change page security.
Added special script to handle parcel and node require.
Added new tagging control.
Adding new HTML Sanitizer.
Packages so I could be sqlite with the right electron version.
Some style changes.
Interface changes.
Changes to the sqlite/client. Interfaces cuased errors.
Fixed bugs in electron ipc handling.
Fixes to the sqlite libs.
Create a new input control that can handle pasting.
pasting HTML works with cycle through HTML,Text, Sanatized HTML.
New UI controls.
Time stamp control has more functionality.
2022-02-03 03:27:51 -06:00

49 lines
1.3 KiB
JSON

{
"name": "time-chain",
"version": "1.0.0",
"description": "timechain",
"author": "Jaosn Tudisco",
"license": "UNLICENSED",
"main": "main.js",
"build": {
"appId": "com.duker.timechain",
"win": {
"icon": "src/img/chains.png"
}
},
"scripts": {
"start": "electron .",
"build": "parcel build --dist-dir ./src/dist --target \"jason\" start.js",
"watch": "parcel --dist-dir ./src/dist --target \"jason\" start.js",
"build-main": "parcel build --dist-dir ./src/dist --target \"jason\" main.js",
"rebuild": "electron-rebuild -f -w better-sqlite3",
"postinstall": "electron-builder install-app-deps"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"targets": {
"jason": {
"distDir": "./src/dist"
}
},
"devDependencies": {
"@riotjs/compiler": "^6.1.3",
"@riotjs/parcel-transformer-riot": "^7.0.3",
"electron": "^16.0.7",
"jest": "^27.4.7",
"parcel": "^2.2.1"
},
"dependencies": {
"@yaireo/tagify": "^4.9.5",
"better-sqlite3": "^7.5.0",
"conf": "^10.1.1",
"dayjs": "^1.10.7",
"electron-rebuild": "^3.2.7",
"empty-lite": "^1.2.0",
"es6-interface": "^3.2.1",
"nanoid": "^3.2.0",
"pubsub-js": "^1.9.4",
"riot": "^6.1.2",
"sanitize-html": "^2.6.1"
}
}