2022-02-24 22:56:27 +01:00
|
|
|
{
|
2022-02-27 20:27:22 +01:00
|
|
|
"name": "picsur-shared",
|
2023-06-15 13:28:28 +02:00
|
|
|
"version": "0.5.2",
|
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",
|
2023-06-15 13:09:23 +02:00
|
|
|
"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",
|
2023-11-28 18:55:41 +01:00
|
|
|
"zod": "^3.22.4"
|
2022-02-24 22:56:27 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-11-28 18:55:41 +01:00
|
|
|
"@types/ms": "^0.7.34",
|
|
|
|
|
"@types/node": "^20.10.0",
|
2023-06-02 16:35:31 +02:00
|
|
|
"tsc-watch": "^6.0.4",
|
2023-11-28 18:55:41 +01:00
|
|
|
"typescript": "^5.3.2"
|
2022-02-24 22:56:27 +01:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2022-03-24 19:56:26 +01:00
|
|
|
"clean": "rm -rf ./dist",
|
|
|
|
|
"start": "yarn clean && tsc-watch",
|
2022-05-02 12:11:25 +02:00
|
|
|
"build": "yarn clean && tsc",
|
|
|
|
|
"purge": "rm -rf ./dist && rm -rf ./node_modules"
|
2022-02-24 22:56:27 +01:00
|
|
|
}
|
|
|
|
|
}
|