TimeChain/package.json
Jason Tudisco 80a596ea44 Removed all the css in the controls and put them in there own file in the less directory. (https://lesscss.org/)
Added sass  (css) to parcel transformers so I could modify the tagigy control style easy.
removed buttons from paste input.
Added keybinding for keyboard control.
Fixed bug with bad tags in paste list control.
Timestamp control can now show unix time by double clicking it.
Added sentry error reporter so errors can be recorded.
Added new font for minimalist style look.
2022-02-10 05:48:37 -06:00

56 lines
1.5 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": {
"@parcel/transformer-less": "^2.3.0",
"@parcel/transformer-sass": "^2.3.0",
"@riotjs/compiler": "^6.1.3",
"@riotjs/parcel-transformer-riot": "^7.0.3",
"electron": "^16.0.7",
"electron-rebuild": "^3.2.7",
"jest": "^27.4.7",
"less": "^4.1.2",
"parcel": "^2"
},
"dependencies": {
"@sentry/browser": "^6.17.6",
"@sentry/tracing": "^6.17.6",
"@yaireo/tagify": "^4.9.5",
"better-sqlite3": "^7.5.0",
"conf": "^10.1.1",
"dayjs": "^1.10.7",
"empty-lite": "^1.2.0",
"es6-interface": "^3.2.1",
"hash.js": "^1.1.7",
"keymage": "^1.1.3",
"nanoid": "^3.2.0",
"pubsub-js": "^1.9.4",
"riot": "^6.1.2",
"sanitize-html": "^2.6.1"
}
}