fp/packages/utils/package.json

32 lines
738 B
JSON
Raw Normal View History

2024-07-10 02:34:23 +00:00
{
2024-07-15 16:07:04 +00:00
"name": "@futureporn/utils",
2024-07-10 02:34:23 +00:00
"type": "module",
"version": "1.0.0",
"description": "",
2024-07-23 02:59:41 +00:00
"main": "./src/index.ts",
"types": "./src/index.ts",
2024-07-10 02:34:23 +00:00
"scripts": {
2024-07-23 02:59:41 +00:00
"test": "mocha",
2024-07-16 10:46:44 +00:00
"clean": "rm -rf dist",
"superclean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && rm -rf dist"
2024-07-10 02:34:23 +00:00
},
"keywords": [],
2024-07-23 02:59:41 +00:00
"author": "@CJ_Clippy",
2024-07-10 02:34:23 +00:00
"license": "Unlicense",
"dependencies": {
2024-07-23 02:59:41 +00:00
"@futureporn/scout": "workspace:*",
2024-07-10 22:11:18 +00:00
"@paralleldrive/cuid2": "^2.2.2",
2024-07-10 02:34:23 +00:00
"@types/node": "^20.14.9",
2024-07-10 22:11:18 +00:00
"p-retry": "^5.1.2",
2024-07-10 02:34:23 +00:00
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"chai": "^5.1.1",
"mocha": "^10.6.0",
2024-07-23 02:59:41 +00:00
"ts-node": "^10.9.2",
"tsx": "^4.16.2"
2024-07-10 02:34:23 +00:00
}
}