Diskernet/package.json

66 lines
1.6 KiB
JSON
Raw Normal View History

2021-11-03 04:51:04 +00:00
{
2022-01-05 04:36:35 +00:00
"name": "diskernet",
"type": "module",
2021-11-03 04:51:04 +00:00
"description": "Library server and an archivist browser controller.",
2021-12-25 09:05:17 +00:00
"main": "src/app.js",
"module": "src/app.js",
2021-11-03 04:51:04 +00:00
"bin": {
2021-12-28 10:47:17 +00:00
"archivist1": "build/22120.js"
2021-11-03 04:51:04 +00:00
},
"scripts": {
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",
"save": "nodemon src/app.js 22120 save",
"serve": "nodemon src/app.js 22120 serve",
"lint": "watch -n 5 npx eslint .",
"test-hl": "node src/highlighter.js"
2021-11-03 04:51:04 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/dosyago/22120.git"
},
"pkg": {
"scripts": "build/*.js",
"assets": "public/**/*",
"outputPath": "bin"
},
2021-11-03 04:51:04 +00:00
"keywords": [
"archivist",
"library"
],
"author": "@dosy",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/dosyago/22120/issues"
},
"homepage": "https://github.com/dosyago/22120#readme",
"dependencies": {
"autosuggest-highlight": "^3.2.0",
2021-11-03 04:51:04 +00:00
"chrome-launcher": "latest",
"express": "latest",
"flexsearch": "^0.7.21",
2021-12-21 05:07:43 +00:00
"fz-search": "^1.0.0",
2021-11-03 04:51:04 +00:00
"hasha": "latest",
2021-12-17 06:42:51 +00:00
"natural": "^5.1.11",
2021-12-18 04:13:10 +00:00
"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",
"ukkonen": "^1.4.0",
2021-11-03 04:51:04 +00:00
"ws": "latest"
},
"devDependencies": {
2021-12-15 05:16:16 +00:00
"eslint": "^8.4.1",
"esm": "^3.2.25",
2021-12-12 13:55:54 +00:00
"nexe": "^1.1.6",
2021-12-12 13:53:19 +00:00
"nodemon": "latest",
2021-12-12 13:55:54 +00:00
"npx": "^3.0.0",
2021-11-03 04:51:04 +00:00
"webpack": "latest",
"webpack-cli": "latest"
2022-01-01 21:38:33 +00:00
},
2022-01-05 04:36:35 +00:00
"version": "2.4.4"
2021-11-03 04:51:04 +00:00
}