Files
Picsur/shared/package.json

25 lines
620 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",
2022-10-11 19:47:02 +02:00
"version": "0.4.1",
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",
2022-02-27 20:27:22 +01:00
"repository": "https://github.com/rubikscraft/Picsur",
2022-02-24 22:56:27 +01:00
"author": "Rubikscraft <contact@rubikscraft.nl>",
2022-02-28 23:18:07 +01:00
"type": "module",
2022-02-24 22:56:27 +01:00
"main": "./dist/index.js",
"dependencies": {
2022-12-20 16:21:25 +01:00
"zod": "^3.20.2"
2022-02-24 22:56:27 +01:00
},
"devDependencies": {
2022-12-20 16:21:25 +01:00
"@types/node": "^18.11.17",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.4"
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
}
}