-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 860 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "dodoo",
"version": "1.1.4",
"description": "Node.js typesafe client for odoo ERP using xmlrpc api",
"main": "dist/index.js",
"scripts": {
"build": "tsc && node -e fs.rmSync(\\\"dist/types.js\\\")",
"prepublishOnly": "npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eroironico/dodoo.git"
},
"keywords": [
"odoo",
"odoo xmlrpc",
"odoo api"
],
"author": "eroironico",
"license": "MIT",
"bugs": {
"url": "https://github.com/eroironico/dodoo/issues"
},
"homepage": "https://github.com/eroironico/dodoo#readme",
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/xmlrpc": "^1.3.7",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/node": "^20.4.2",
"xmlrpc": "^1.3.2"
}
}