Picsur/shared/package.json
2022-06-17 10:48:56 +02:00

26 lines
637 B
JSON

{
"private": false,
"name": "picsur-shared",
"version": "0.3.0",
"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": {
"tsc-watch": "^5.0.3",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/node": "^18.0.0",
"typescript": "4.7.3"
},
"scripts": {
"clean": "rm -rf ./dist",
"start": "yarn clean && tsc-watch",
"build": "yarn clean && tsc",
"purge": "rm -rf ./dist && rm -rf ./node_modules"
}
}