Files
oc-tryton-rpc-typescript/package.json

50 lines
1.1 KiB
JSON

{
"name": "@tryton/client-node",
"version": "1.0.0",
"description": "Cliente RPC TypeScript para Tryton ERP - Compatible con Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"example:basic": "node dist/examples/basic-connection.js"
},
"keywords": [
"tryton",
"erp",
"rpc",
"client",
"typescript",
"nodejs",
"jsonrpc"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"rimraf": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"homepage": ""
}