Picsur/shared/package.json

25 lines
618 B
JSON
Raw Normal View History

2022-02-24 21:56:27 +00:00
{
2022-02-27 19:27:22 +00:00
"name": "picsur-shared",
2022-03-31 21:00:48 +00:00
"version": "0.3.0",
2022-02-27 19:27:22 +00:00
"description": "Shared libraries for Picsur",
2022-02-24 21:56:27 +00:00
"license": "GPL-3.0",
2022-02-27 19:27:22 +00:00
"repository": "https://github.com/rubikscraft/Picsur",
2022-02-24 21:56:27 +00:00
"author": "Rubikscraft <contact@rubikscraft.nl>",
2022-02-28 22:18:07 +00:00
"type": "module",
2022-02-24 21:56:27 +00:00
"main": "./dist/index.js",
"dependencies": {
2022-04-15 11:05:17 +00:00
"tsc-watch": "^5.0.3",
2022-08-26 10:38:05 +00:00
"zod": "^3.18.0"
2022-02-24 21:56:27 +00:00
},
"devDependencies": {
2022-08-26 10:38:05 +00:00
"@types/node": "^18.7.13",
"typescript": "4.8.2"
2022-02-24 21:56:27 +00:00
},
"scripts": {
2022-03-24 18:56:26 +00:00
"clean": "rm -rf ./dist",
"start": "yarn clean && tsc-watch",
2022-05-02 10:11:25 +00:00
"build": "yarn clean && tsc",
"purge": "rm -rf ./dist && rm -rf ./node_modules"
2022-02-24 21:56:27 +00:00
}
}