43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
|
|
{
|
||
|
|
"name": "@arco/clarizen-lib",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"description": "TypeScript client for Clarizen / Planview Adaptive Work REST API V2.0",
|
||
|
|
"type": "module",
|
||
|
|
"main": "./dist/index.js",
|
||
|
|
"types": "./dist/index.d.ts",
|
||
|
|
"files": [
|
||
|
|
"dist",
|
||
|
|
"README.md"
|
||
|
|
],
|
||
|
|
"exports": {
|
||
|
|
".": {
|
||
|
|
"types": "./dist/index.d.ts",
|
||
|
|
"import": "./dist/index.js"
|
||
|
|
},
|
||
|
|
"./metadata": {
|
||
|
|
"types": "./dist/generated/metadata-types.d.ts",
|
||
|
|
"import": "./dist/generated/metadata-types.js"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"prepare": "npm run build",
|
||
|
|
"build": "tsc",
|
||
|
|
"scrape": "tsx scripts/scrape-api.ts",
|
||
|
|
"scrape:types": "python3 scripts/scrape-types.py",
|
||
|
|
"generate:types": "python3 scripts/generate-api-types.py",
|
||
|
|
"scrape:metadata": "tsx scripts/scrape-metadata.ts",
|
||
|
|
"generate:metadata": "tsx scripts/scrape-metadata.ts",
|
||
|
|
"example:api-key": "tsx examples/api-key.ts",
|
||
|
|
"example:session": "tsx examples/session-login.ts"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^22.15.0",
|
||
|
|
"dotenv": "^16.5.0",
|
||
|
|
"tsx": "^4.19.0",
|
||
|
|
"typescript": "^5.8.0"
|
||
|
|
},
|
||
|
|
"engines": {
|
||
|
|
"node": ">=18"
|
||
|
|
}
|
||
|
|
}
|