Picsur/shared/package.json

31 lines
735 B
JSON
Raw Permalink Normal View History

2022-02-24 21:56:27 +00:00
{
2022-02-27 19:27:22 +00:00
"name": "picsur-shared",
2023-06-15 11:28:28 +00:00
"version": "0.5.2",
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",
2023-03-15 13:24:26 +00:00
"repository": "https://github.com/caramelfur/Picsur",
"author": "Caramel <picsur@caramelfur.dev>",
2022-02-28 22:18:07 +00:00
"type": "module",
2022-02-24 21:56:27 +00:00
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
"./dist/*": "./dist/*.js"
},
2022-02-24 21:56:27 +00:00
"dependencies": {
2023-06-15 11:27:30 +00:00
"ms": "2.1.3",
2023-03-15 13:07:08 +00:00
"zod": "^3.21.4"
2022-02-24 21:56:27 +00:00
},
"devDependencies": {
"@types/node": "^20.3.1",
2023-06-02 14:35:31 +00:00
"tsc-watch": "^6.0.4",
"typescript": "^5.1.3"
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
}
}