-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.09 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "odoo-toolbox",
"version": "0.1.0",
"private": true,
"description": "TypeScript infrastructure-as-code toolkit for Odoo ERP",
"repository": {
"type": "git",
"url": "https://github.com/marcfargas/odoo-toolbox.git"
},
"keywords": [
"odoo",
"erp",
"typescript",
"infrastructure-as-code",
"state-management",
"drift-detection",
"pi-package"
],
"pi": {
"skills": [
"skills"
]
},
"author": "Marc Fargas <marc@marcfargas.com>",
"license": "LGPL-3.0",
"workspaces": [
"packages/*",
"targets/*"
],
"scripts": {
"build": "npm run build -w @marcfargas/odoo-client && npm run build -w @marcfargas/odoo-introspection -w @marcfargas/odoo-testcontainers && npm run build -w @marcfargas/odoo-cli -w @marcfargas/odoo-state-manager -w @marcfargas/odoo-mcp",
"build:dist": "node scripts/build-dist.js",
"clean": "rm -rf packages/*/dist targets/*/dist packages/*/tsconfig.tsbuildinfo targets/*/tsconfig.tsbuildinfo dist dist-skills",
"test": "vitest run",
"test:unit": "vitest run",
"test:packaging": "vitest run -c vitest.packaging.config.mts",
"test:integration": "vitest run --config vitest.integration.config.mts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts && prettier --check \"packages/**/*.ts\" \"targets/**/*.ts\"",
"lint:fix": "eslint packages targets --ext .ts,.tsx --fix && prettier --write \"**/*.{ts,json,md}\"",
"odoo:up": "docker compose -f docker-compose.test.yml up -d",
"odoo:down": "docker compose -f docker-compose.test.yml down",
"odoo:clean": "docker compose -f docker-compose.test.yml down -v",
"odoo:logs": "docker compose -f docker-compose.test.yml logs -f",
"odoo:addon:install": "node scripts/manage-addon.js install",
"odoo:addon:uninstall": "node scripts/manage-addon.js uninstall",
"odoo:addon:list": "node scripts/manage-addon.js list",
"odoo:addon:info": "node scripts/manage-addon.js info",
"prepare": "husky",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"docs:dev": "vitepress dev docs",
"docs:prebuild": "npx tsx docs/.vitepress/scripts/copy-readmes.mts",
"docs:build": "npx tsx docs/.vitepress/scripts/copy-readmes.mts && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@marcfargas/odoo-client": "workspace:*",
"@marcfargas/odoo-introspection": "workspace:*",
"@testcontainers/postgresql": "^11.12.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^4.0.18",
"archiver": "^7.0.0",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"prettier": "^3.8.0",
"testcontainers": "^11.12.0",
"typescript": "^5.0.0",
"vitepress": "^1.6.4",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=24.0.0"
}
}