Files
Picsur/shared/package.json

25 lines
618 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-09-02 12:26:05 +02:00
"version": "0.4.0",
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-09-06 16:32:16 +02:00
"zod": "^3.19.0"
2022-02-24 22:56:27 +01:00
},
"devDependencies": {
2022-09-09 15:20:54 +02:00
"@types/node": "^18.7.16",
2022-09-11 16:08:46 +02:00
"tsc-watch": "^5.0.3",
2022-09-09 15:20:54 +02:00
"typescript": "4.8.3"
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
}
}