fp/packages/scout/package.json

77 lines
2.3 KiB
JSON
Raw Normal View History

2024-05-27 22:20:58 +00:00
{
2024-07-15 16:07:04 +00:00
"name": "@futureporn/scout",
2024-05-27 22:20:58 +00:00
"type": "module",
2024-07-16 10:46:44 +00:00
"version": "4.0.1",
2024-06-04 23:06:47 +00:00
"description": "vtuber data acquisition",
2024-07-23 02:59:41 +00:00
"main": "src/index.ts",
"types": "src/index.ts",
2024-07-10 02:34:23 +00:00
"exports": {
2024-07-28 00:42:09 +00:00
"./*.ts": "./src/*.ts"
2024-07-10 02:34:23 +00:00
},
2024-05-27 22:20:58 +00:00
"scripts": {
2024-07-28 00:42:09 +00:00
"test": "pnpm run test.unit && pnpm run test.integration",
"test.unit": "mocha --require ts-node/register src/**/*.spec.ts -g unit",
"test.integration": "mocha --require ts-node/register src/**/*.spec.ts -g integration",
2024-07-19 08:01:06 +00:00
"build": "tsup",
2024-07-16 06:57:27 +00:00
"dev": "nodemon --ext js,ts,json,yaml --exec \"node --loader ts-node/esm --disable-warning=ExperimentalWarning ./src/index.ts\"",
2024-07-16 10:46:44 +00:00
"start": "node ./dist/index.js",
"clean": "rm -rf dist",
"superclean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && rm -rf dist"
2024-05-27 22:20:58 +00:00
},
"keywords": [],
"author": "@CJ_Clippy",
"license": "Unlicense",
"dependencies": {
2024-06-04 23:06:47 +00:00
"@aws-sdk/client-s3": "^3.583.0",
"@aws-sdk/lib-storage": "^3.588.0",
"@aws-sdk/s3-request-presigner": "^3.588.0",
2024-07-16 10:46:44 +00:00
"@futureporn/types": "workspace:*",
2024-06-04 23:06:47 +00:00
"@paralleldrive/cuid2": "^2.2.2",
2024-06-12 04:28:36 +00:00
"@temporalio/client": "^1.9.0",
"@temporalio/worker": "^1.9.0",
"@temporalio/workflow": "^1.9.0",
"@tsconfig/node20": "^20.1.4",
"@types/imapflow": "^1.0.18",
2024-05-27 22:20:58 +00:00
"cheerio": "1.0.0-rc.12",
"concurrently": "^8.2.2",
2024-06-01 02:43:44 +00:00
"date-fns": "^3.6.0",
2024-05-27 22:20:58 +00:00
"dotenv": "^16.4.5",
"fastq": "^1.17.1",
"faye": "^1.4.0",
2024-06-04 23:06:47 +00:00
"htmlparser2": "^9.1.0",
2024-05-27 22:20:58 +00:00
"imapflow": "^1.0.160",
"limiter": "2.0.1",
"mailparser": "^3.7.1",
2024-06-12 04:28:36 +00:00
"node-fetch": "^3.3.0",
2024-06-04 23:06:47 +00:00
"p-retry": "^5.1.2",
"prevvy": "^7.0.1",
2024-06-01 02:43:44 +00:00
"qs": "^6.12.1",
2024-06-04 23:06:47 +00:00
"sharp": "^0.33.4",
2024-06-01 02:43:44 +00:00
"slugify": "^1.6.6",
2024-06-12 04:28:36 +00:00
"tsx": "^4.7.2",
2024-05-27 22:20:58 +00:00
"xpath": "^0.0.34"
},
2024-06-12 04:28:36 +00:00
"packageManager": "pnpm@9.2.0",
2024-05-27 22:20:58 +00:00
"devDependencies": {
2024-07-28 00:42:09 +00:00
"@babel/preset-env": "^7.25.0",
"@babel/preset-typescript": "^7.24.7",
2024-07-23 02:59:41 +00:00
"@futureporn/utils": "workspace:^",
2024-07-28 00:42:09 +00:00
"@jest/globals": "^29.7.0",
2024-07-14 18:38:59 +00:00
"@types/chai": "^4.3.16",
2024-07-16 06:57:27 +00:00
"@types/cheerio": "^0.22.35",
2024-07-28 00:42:09 +00:00
"@types/jest": "^29.5.12",
2024-07-16 06:57:27 +00:00
"@types/mailparser": "^3.4.4",
2024-07-14 18:38:59 +00:00
"@types/mocha": "^10.0.7",
2024-07-28 00:42:09 +00:00
"@types/sinon": "^17.0.3",
2024-05-27 22:20:58 +00:00
"chai": "^5.1.0",
2024-07-28 00:42:09 +00:00
"esmock": "^2.6.7",
"jest": "^29.7.0",
2024-07-14 05:20:35 +00:00
"mocha": "^10.4.0",
2024-07-16 06:57:27 +00:00
"nodemon": "^3.1.4",
2024-07-28 00:42:09 +00:00
"sinon": "^15.2.0",
2024-07-14 16:22:30 +00:00
"ts-node": "^10.9.2",
2024-07-19 08:01:06 +00:00
"tsup": "^8.1.2",
2024-07-16 06:57:27 +00:00
"typescript": "^5.5.3"
2024-05-27 22:20:58 +00:00
}
}