Picsur/shared/package.json

31 lines
735 B
JSON

{
"name": "picsur-shared",
"version": "0.5.2",
"description": "Shared libraries for Picsur",
"license": "GPL-3.0",
"repository": "https://github.com/caramelfur/Picsur",
"author": "Caramel <picsur@caramelfur.dev>",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
"./dist/*": "./dist/*.js"
},
"dependencies": {
"ms": "2.1.3",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^20.3.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.1.3"
},
"scripts": {
"clean": "rm -rf ./dist",
"start": "yarn clean && tsc-watch",
"build": "yarn clean && tsc",
"purge": "rm -rf ./dist && rm -rf ./node_modules"
}
}