ionian/package.json

84 lines
1.9 KiB
JSON
Raw Normal View History

2020-12-31 03:06:16 +09:00
{
"name": "followed",
"version": "1.0.0",
"description": "",
2021-01-10 03:04:30 +09:00
"main": "build/app.js",
2020-12-31 03:06:16 +09:00
"scripts": {
2021-01-10 03:04:30 +09:00
"compile": "tsc",
"compile:watch": "tsc -w",
2021-10-13 17:12:03 +09:00
"build": "cd src/client && npm run build:prod",
"build:watch": "cd src/client && npm run build:watch",
2021-01-10 03:04:30 +09:00
"app": "electron build/app.js",
2021-10-13 17:12:03 +09:00
"app:build": "electron-builder",
"app:pack": "electron-builder --dir",
2021-02-22 18:48:08 +09:00
"app:build:win64": "electron-builder --win --x64",
"app:pack:win64": "electron-builder --win --x64 --dir"
2021-01-10 03:04:30 +09:00
},
"build": {
2021-02-01 22:21:42 +09:00
"asar": true,
2021-01-11 23:37:29 +09:00
"files": [
2021-01-10 03:04:30 +09:00
"build/**/*",
"node_modules/**/*",
2021-01-17 03:24:55 +09:00
"package.json"
2021-01-10 03:04:30 +09:00
],
2021-10-13 17:12:03 +09:00
"extraFiles": [
2021-02-22 18:48:08 +09:00
{
2021-10-13 17:12:03 +09:00
"from": "dist/",
"to": "dist/",
"filter": [
"**/*",
"!**/*.map"
]
2021-02-22 18:48:08 +09:00
},
"index.html"
],
2021-01-10 03:04:30 +09:00
"appId": "com.prelude.ionian.app",
"productName": "Ionian",
"win": {
"target": [
"zip"
]
},
2021-02-22 21:47:20 +09:00
"linux": {
"target": [
"zip"
]
},
2021-01-10 03:04:30 +09:00
"directories": {
"output": "app/",
"app": "."
}
2020-12-31 03:06:16 +09:00
},
"author": "",
"license": "ISC",
"dependencies": {
2021-10-13 17:12:03 +09:00
"@louislam/sqlite3": "^6.0.0",
2022-06-21 14:43:15 +09:00
"@types/koa-compose": "^3.2.5",
2021-01-22 15:13:05 +09:00
"chokidar": "^3.5.1",
"jsonschema": "^1.4.0",
2021-01-09 23:23:37 +09:00
"jsonwebtoken": "^8.5.1",
2021-10-13 17:12:03 +09:00
"knex": "^0.95.11",
2021-01-22 15:13:05 +09:00
"koa": "^2.13.1",
2020-12-31 03:06:16 +09:00
"koa-bodyparser": "^4.3.0",
2022-06-20 16:42:31 +09:00
"koa-compose": "^4.1.0",
2020-12-31 03:06:16 +09:00
"koa-router": "^10.0.0",
"natural-orderby": "^2.0.3",
"node-stream-zip": "^1.12.0",
2021-10-13 17:12:03 +09:00
"sqlite3": "^5.0.2",
"tiny-async-pool": "^1.2.0"
2020-12-31 03:06:16 +09:00
},
"devDependencies": {
2021-01-09 23:23:37 +09:00
"@types/jsonwebtoken": "^8.5.0",
2020-12-31 03:06:16 +09:00
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.1",
2021-01-22 15:13:05 +09:00
"@types/node": "^14.14.22",
2021-10-13 17:12:03 +09:00
"@types/tiny-async-pool": "^1.0.0",
2021-01-22 15:13:05 +09:00
"electron": "^11.2.0",
2021-01-10 03:04:30 +09:00
"electron-builder": "^22.9.1",
2021-01-15 18:43:36 +09:00
"ts-json-schema-generator": "^0.82.0",
2021-02-22 18:48:08 +09:00
"ts-node": "^9.1.1",
2022-06-20 16:42:31 +09:00
"typescript": "^4.7.3"
2020-12-31 03:06:16 +09:00
}
}