Diskernet/package.json

78 lines
2.1 KiB
JSON
Raw Normal View History

2021-11-03 04:51:04 +00:00
{
2022-01-05 09:36:54 +00:00
"name": "diskernet",
2023-01-11 03:20:17 +00:00
"version": "2.6.0",
2021-11-03 04:51:04 +00:00
"description": "Library server and an archivist browser controller.",
2023-01-11 03:20:17 +00:00
"main": "build/22120.js",
"module": "src/app.js",
2021-11-03 04:51:04 +00:00
"bin": {
2023-01-11 03:20:17 +00:00
"diskernet": "build/22120.js"
2021-11-03 04:51:04 +00:00
},
"scripts": {
2023-01-11 03:20:17 +00:00
"bundle": "npx rollup --config",
2021-12-25 09:05:17 +00:00
"start": "node src/app.js",
2021-12-28 10:45:07 +00:00
"setup": "bash ./scripts/build_setup.sh",
"build": "echo 'please run ./scripts/build_setup.sh first (one time only) and then ./scripts/compile.sh'",
"clean": "rm -rf build/* bin/*",
2021-12-25 09:05:17 +00:00
"test": "nodemon src/app.js",
2023-01-11 03:20:17 +00:00
"save": "nodemon src/app.js 22120 save",
"serve": "nodemon src/app.js 22120 serve",
"lint": "watch -n 5 npx eslint .",
2022-01-05 06:22:22 +00:00
"test-hl": "node src/highlighter.js",
"postpublish": "cp package.json .package.build.json",
2023-01-11 03:20:17 +00:00
"prepublishOnly": "npm run bundle && npx webpack ."
2021-11-03 04:51:04 +00:00
},
"repository": {
"type": "git",
2023-01-11 03:20:17 +00:00
"url": "git+https://github.com/dosyago/22120.git"
2021-11-03 04:51:04 +00:00
},
"pkg": {
2023-01-11 03:20:17 +00:00
"patches": {
"./node_modules/fetch-blob/streams.cjs": [
"Object.assign(globalThis, require('node:stream/web'))",
"Object.assign(globalThis, require('stream').web)"
]
},
"scripts": "build/*.js",
"assets": "public/**/*",
"outputPath": "bin"
},
2021-11-03 04:51:04 +00:00
"keywords": [
2023-01-11 03:20:17 +00:00
"web-archive",
"search-engine",
"self-hosted",
"offline",
2021-11-03 04:51:04 +00:00
"archivist",
"library"
],
"author": "@dosy",
2023-01-11 03:20:17 +00:00
"license": "AGPL-3.0",
2021-11-03 04:51:04 +00:00
"bugs": {
2023-01-11 03:20:17 +00:00
"url": "https://github.com/dosyago/22120/issues"
2021-11-03 04:51:04 +00:00
},
2023-01-11 03:20:17 +00:00
"homepage": "https://github.com/dosyago/22120#readme",
2021-11-03 04:51:04 +00:00
"dependencies": {
"chrome-launcher": "latest",
"express": "latest",
2023-01-11 03:20:17 +00:00
"flexsearch": "^0.7.21",
"fz-search": "^1.0.0",
2021-11-03 04:51:04 +00:00
"hasha": "latest",
2023-01-11 03:20:17 +00:00
"natural": "^5.1.11",
"ndx": "^1.0.2",
"ndx-query": "^1.0.1",
"ndx-serializable": "^1.0.0",
2021-11-03 04:51:04 +00:00
"node-fetch": "latest",
2023-01-11 03:20:17 +00:00
"ukkonen": "^1.4.0",
2021-11-03 04:51:04 +00:00
"ws": "latest"
},
"devDependencies": {
2023-01-11 03:20:17 +00:00
"eslint": "^8.4.1",
"esm": "^3.2.25",
"nexe": "^1.1.6",
2021-12-12 13:53:19 +00:00
"nodemon": "latest",
2023-01-11 03:20:17 +00:00
"npx": "^3.0.0",
2021-11-03 04:51:04 +00:00
"webpack": "latest",
2023-01-11 03:20:17 +00:00
"webpack-cli": "latest",
"rollup-plugin-terser": "^7.0.2"
2022-01-05 06:16:36 +00:00
}
2021-11-03 04:51:04 +00:00
}