mirror of
https://github.com/CaramelFur/Picsur.git
synced 2026-01-20 22:22:15 +01:00
33 lines
787 B
JSON
33 lines
787 B
JSON
{
|
|
"name": "picsur-shared",
|
|
"version": "0.5.3",
|
|
"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.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ms": "^0.7.34",
|
|
"@types/node": "^22.1.0",
|
|
"rimraf": "^6.0.1",
|
|
"tsc-watch": "^6.2.0",
|
|
"typescript": "~5.5.4"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf ./dist",
|
|
"start": "pnpm clean && tsc-watch",
|
|
"build": "pnpm clean && tsc",
|
|
"purge": "rimraf ./dist && rimraf ./node_modules"
|
|
}
|
|
}
|