mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-04-29 21:19:33 -05:00
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "trailbase",
|
|
"description": "Official TrailBase client",
|
|
"version": "0.3.2",
|
|
"license": "OSL-3.0",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"main": "./dist/js/client/src/index.js",
|
|
"types": "/dist/js/client/src/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"default": "./dist/js/client/src/index.js",
|
|
"types": "./dist/js/client/src/index.d.ts"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/trailbaseio/trailbase.git",
|
|
"directory": "client/trailbase-ts"
|
|
},
|
|
"homepage": "https://trailbase.io",
|
|
"scripts": {
|
|
"start": "tsc && node dist/client/trailbase-ts/src/index.js",
|
|
"build": "tsc",
|
|
"test": "vitest run && vite-node tests/integration_test_runner.ts",
|
|
"format": "prettier -w src tests",
|
|
"check": "tsc --noEmit --skipLibCheck && eslint"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.21.0",
|
|
"eslint": "^9.21.0",
|
|
"execa": "^9.5.2",
|
|
"globals": "^16.0.0",
|
|
"http-status": "^2.1.0",
|
|
"jsdom": "^26.0.0",
|
|
"oauth2-mock-server": "^7.2.0",
|
|
"prettier": "^3.5.3",
|
|
"tinybench": "^3.1.1",
|
|
"typescript": "^5.8.2",
|
|
"typescript-eslint": "^8.25.0",
|
|
"vite-node": "^3.0.7",
|
|
"vitest": "^3.0.7"
|
|
},
|
|
"dependencies": {
|
|
"jwt-decode": "^4.0.0",
|
|
"uuid": "^11.1.0"
|
|
}
|
|
}
|