Picsur/shared/package.json

25 lines
613 B
JSON

{
"name": "picsur-shared",
"version": "0.5.1",
"description": "Shared libraries for Picsur",
"license": "GPL-3.0",
"repository": "https://github.com/caramelfur/Picsur",
"author": "Caramel <picsur@caramelfur.dev>",
"type": "module",
"main": "./dist/index.js",
"dependencies": {
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^18.15.3",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5"
},
"scripts": {
"clean": "rm -rf ./dist",
"start": "yarn clean && tsc-watch",
"build": "yarn clean && tsc",
"purge": "rm -rf ./dist && rm -rf ./node_modules"
}
}