Files
tunarr/types/package.json

48 lines
1.1 KiB
JSON

{
"name": "@tunarr/types",
"version": "0.1.0",
"description": "Type definitions and schemas shared between server and web",
"scripts": {
"build": "tsup",
"clean": "rimraf build",
"dev": "tsup --watch"
},
"main": "./build/src/index.js",
"module": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"keywords": [],
"author": "chrisbenincasa",
"type": "module",
"license": "Zlib",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.45.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "5.2.2"
},
"dependencies": {
"zod": "^3.22.4"
},
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./package.json": "./package.json",
"./schemas": {
"types": "./build/schemas/index.d.ts",
"default": "./build/schemas/index.js"
},
"./plex": {
"types": "./build/plex/index.d.ts",
"default": "./build/plex/index.js"
},
"./api": {
"types": "./build/api/index.d.ts",
"default": "./build/api/index.js"
}
}
}