1
0
mirror of https://github.com/c9fe/22120.git synced 2024-09-17 13:32:23 +02:00
22120/package.json

66 lines
1.7 KiB
JSON
Raw Normal View History

2021-11-03 05:51:04 +01:00
{
2022-01-05 06:30:21 +01:00
"name": "archivist1",
2022-01-05 06:46:35 +01:00
"type": "module",
2021-11-03 05:51:04 +01:00
"description": "Library server and an archivist browser controller.",
2021-12-25 10:05:17 +01:00
"main": "src/app.js",
2022-01-05 07:14:01 +01:00
"module": "dist/22120-module.js",
2021-11-03 05:51:04 +01:00
"bin": {
2021-12-28 11:47:17 +01:00
"archivist1": "build/22120.js"
2021-11-03 05:51:04 +01:00
},
"scripts": {
2022-01-05 07:14:01 +01:00
"bundle": "npx rollup --config",
2021-12-25 10:05:17 +01:00
"start": "node src/app.js",
2021-12-28 11:45:07 +01: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 10:05:17 +01: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 05:51:04 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/dosyago/22120.git"
},
"pkg": {
"scripts": "build/*.js",
"assets": "public/**/*",
"outputPath": "bin"
},
2021-11-03 05:51:04 +01: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": {
"chrome-launcher": "latest",
"express": "latest",
"flexsearch": "^0.7.21",
2021-12-21 06:07:43 +01:00
"fz-search": "^1.0.0",
2021-11-03 05:51:04 +01:00
"hasha": "latest",
2021-12-17 07:42:51 +01:00
"natural": "^5.1.11",
2021-12-18 05:13:10 +01:00
"ndx": "^1.0.2",
"ndx-query": "^1.0.1",
"ndx-serializable": "^1.0.0",
2021-11-03 05:51:04 +01:00
"node-fetch": "latest",
"ukkonen": "^1.4.0",
2021-11-03 05:51:04 +01:00
"ws": "latest"
},
"devDependencies": {
2021-12-15 06:16:16 +01:00
"eslint": "^8.4.1",
"esm": "^3.2.25",
2021-12-12 14:55:54 +01:00
"nexe": "^1.1.6",
2021-12-12 14:53:19 +01:00
"nodemon": "latest",
2021-12-12 14:55:54 +01:00
"npx": "^3.0.0",
2021-11-03 05:51:04 +01:00
"webpack": "latest",
"webpack-cli": "latest"
2022-01-05 07:14:01 +01:00
},
2022-01-05 07:15:35 +01:00
"version": "0.0.2"
2021-11-03 05:51:04 +01:00
}