fp/packages/utils/package.json

35 lines
761 B
JSON
Raw Normal View History

2024-07-09 18:34:23 -08:00
{
2024-07-15 08:07:04 -08:00
"name": "@futureporn/utils",
2024-07-09 18:34:23 -08:00
"type": "module",
"version": "1.0.0",
"description": "",
2024-09-03 08:28:39 -08:00
"exports": {
"./*.ts": "./src/*.ts"
},
2024-07-09 18:34:23 -08:00
"scripts": {
2024-07-22 18:59:41 -08:00
"test": "mocha",
2024-07-16 02:46:44 -08:00
"clean": "rm -rf dist",
"superclean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && rm -rf dist"
2024-07-09 18:34:23 -08:00
},
"keywords": [],
2024-07-22 18:59:41 -08:00
"author": "@CJ_Clippy",
2024-07-09 18:34:23 -08:00
"license": "Unlicense",
"dependencies": {
2024-07-10 14:11:18 -08:00
"@paralleldrive/cuid2": "^2.2.2",
2024-09-03 08:28:39 -08:00
"@types/node": "^22.5.2",
"@types/slug": "^5.0.9",
"p-retry": "^6.2.0",
"prevvy": "^8.0.1",
"sharp": "^0.33.5",
2024-07-27 16:42:09 -08:00
"slug": "^9.1.0"
2024-07-09 18:34:23 -08:00
},
"devDependencies": {
2024-09-03 08:28:39 -08:00
"@types/chai": "^4.3.19",
2024-07-09 18:34:23 -08:00
"@types/mocha": "^10.0.7",
"chai": "^5.1.1",
2024-09-03 08:28:39 -08:00
"mocha": "^10.7.3",
2024-07-22 18:59:41 -08:00
"ts-node": "^10.9.2",
2024-09-03 08:28:39 -08:00
"tsx": "^4.19.0"
2024-07-09 18:34:23 -08:00
}
}