Files
Picsur/shared/package.json

26 lines
638 B
JSON
Raw Normal View History

2022-02-24 22:56:27 +01:00
{
"private": false,
2022-02-27 20:27:22 +01:00
"name": "picsur-shared",
2022-03-31 23:00:48 +02:00
"version": "0.3.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-04-15 13:05:17 +02:00
"tsc-watch": "^5.0.3",
2022-06-05 12:16:31 +02:00
"zod": "^3.17.3"
2022-02-24 22:56:27 +01:00
},
"devDependencies": {
2022-06-09 16:42:13 +02:00
"@types/node": "^17.0.41",
2022-06-05 12:16:31 +02:00
"typescript": "4.7.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
}
}