Files
trailbase/crates/assets/js/client/package.json
T
2026-01-11 23:02:27 +01:00

58 lines
1.5 KiB
JSON

{
"name": "trailbase",
"description": "Official TrailBase Client",
"homepage": "https://trailbase.io",
"version": "0.8.0",
"license": "OSL-3.0",
"type": "module",
"main": "./src/index.ts",
"publishConfig": {
"access": "public",
"main": "./dist/client/src/index.js",
"types": "/dist/client/src/index.d.ts",
"exports": {
".": {
"default": "./dist/client/src/index.js",
"types": "./dist/client/src/index.d.ts"
}
}
},
"files": [
"dist",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/trailbaseio/trailbase.git",
"directory": "crates/assets/js/client"
},
"scripts": {
"build": "tsc",
"check": "tsc --noEmit --skipLibCheck && eslint",
"format": "prettier -w src tests",
"prepack": "rm -rf ./dist && pnpm build && test -e ./dist/client/src/index.js",
"start": "tsc && node dist/client/src/index.js",
"test": "vitest run && vite-node tests/integration_test_runner.ts"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"execa": "^9.6.1",
"globals": "^17.0.0",
"http-status": "^2.1.0",
"jsdom": "^27.4.0",
"oauth2-mock-server": "^8.2.0",
"prettier": "^3.7.4",
"tinybench": "^6.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vite-node": "^5.2.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@ungap/raw-json": "0.4.4",
"jwt-decode": "^4.0.0",
"uuid": "^13.0.0"
}
}