Files
Picsur/shared/package.json

31 lines
738 B
JSON
Raw Normal View History

2022-02-24 22:56:27 +01:00
{
2022-02-27 20:27:22 +01:00
"name": "picsur-shared",
"version": "0.5.7",
2022-02-27 20:27:22 +01:00
"description": "Shared libraries for Picsur",
2022-02-24 22:56:27 +01:00
"license": "GPL-3.0",
2023-03-15 14:24:26 +01:00
"repository": "https://github.com/caramelfur/Picsur",
"author": "Caramel <picsur@caramelfur.dev>",
2022-02-28 23:18:07 +01:00
"type": "module",
2022-02-24 22:56:27 +01:00
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
"./dist/*": "./dist/*.js"
},
2022-02-24 22:56:27 +01:00
"dependencies": {
2023-06-15 13:27:30 +02:00
"ms": "2.1.3",
2024-08-04 15:48:12 +02:00
"zod": "^3.23.8"
2022-02-24 22:56:27 +01:00
},
"devDependencies": {
2023-11-28 18:55:41 +01:00
"@types/ms": "^0.7.34",
2024-10-30 20:06:09 +01:00
"@types/node": "^22.8.4",
2024-08-04 15:48:12 +02:00
"typescript": "~5.5.4"
2022-02-24 22:56:27 +01:00
},
"scripts": {
2024-10-30 20:06:09 +01:00
"clean": "rm -rf ./dist",
"start": "pnpm clean && tsc --watch",
2024-08-04 15:48:12 +02:00
"build": "pnpm clean && tsc",
2024-10-30 20:06:09 +01:00
"purge": "rm -rf ./dist && rm -rf ./node_modules"
2022-02-24 22:56:27 +01:00
}
}