mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-27 12:11:14 +00:00
33 lines
948 B
JSON
33 lines
948 B
JSON
{
|
|
"name": "@repo/content",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./schemas": "./src/schemas/index.ts",
|
|
"./loaders": "./src/loaders/index.ts",
|
|
"./github": "./src/github/index.ts",
|
|
"./media": "./src/media/index.ts",
|
|
"./locales": "./src/locales/index.ts"
|
|
},
|
|
"scripts": {
|
|
"test": "node --import tsx --test \"src/**/*.test.ts\"",
|
|
"lint": "eslint . --config ../../packages/config/eslint/base.mjs --max-warnings 0",
|
|
"lint:fix": "eslint . --config ../../packages/config/eslint/base.mjs --fix",
|
|
"check-types": "tsc --noEmit",
|
|
"validate": "tsx scripts/validate.ts",
|
|
"github-smoke": "tsx scripts/github-smoke.ts"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/auth-app": "^8.2.0",
|
|
"@octokit/rest": "^22.0.1",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.12.4",
|
|
"eslint": "^10.2.1",
|
|
"tsx": "^4.20.0",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|