36 lines
850 B
JSON
36 lines
850 B
JSON
{
|
|
"name": "agrarmonitor-connector",
|
|
"version": "0.1.0",
|
|
"description": "TypeScript connector MVP for Agrarmonitor with cookie persistence.",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"clean": "rm -rf dist",
|
|
"prepare": "npm run build",
|
|
"test": "npm run build && node --test test/*.test.js",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"keywords": [
|
|
"agrarmonitor",
|
|
"connector",
|
|
"typescript"
|
|
],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"axios": "^1.7.9",
|
|
"axios-cookiejar-support": "^5.0.5",
|
|
"jsdom": "^29.1.1",
|
|
"tough-cookie": "^4.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsdom": "^28.0.3",
|
|
"@types/node": "^22.10.2",
|
|
"@types/tough-cookie": "^4.0.5",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|