Files
tunarr/types/package.json
2024-08-21 18:30:35 -04:00

51 lines
1.2 KiB
JSON

{
"name": "@tunarr/types",
"version": "0.7.0",
"description": "Type definitions and schemas shared between server and web",
"private": true,
"scripts": {
"build": "tsup",
"clean": "rimraf build",
"dev": "tsup --watch",
"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": {
"@microsoft/api-extractor": "^7.43.0",
"@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.4.3"
},
"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"
}
}
}