Picsur/shared/package.json
2022-12-20 16:21:25 +01:00

25 lines
620 B
JSON

{
"name": "picsur-shared",
"version": "0.4.1",
"description": "Shared libraries for Picsur",
"license": "GPL-3.0",
"repository": "https://github.com/rubikscraft/Picsur",
"author": "Rubikscraft <contact@rubikscraft.nl>",
"type": "module",
"main": "./dist/index.js",
"dependencies": {
"zod": "^3.20.2"
},
"devDependencies": {
"@types/node": "^18.11.17",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.4"
},
"scripts": {
"clean": "rm -rf ./dist",
"start": "yarn clean && tsc-watch",
"build": "yarn clean && tsc",
"purge": "rm -rf ./dist && rm -rf ./node_modules"
}
}