-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 851 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "goo",
"version": "1.2.0",
"private": true,
"license": "MIT",
"type": "module",
"description": "Local Odoo development helper — stdlib Python server + Owl 3 frontend (served as-is; the only built asset is the vendored owlx ORM bundle).",
"scripts": {
"format": "prettier --write \"static/**/*.{js,css,html}\" \"*.md\"",
"format:check": "prettier --check \"static/**/*.{js,css,html}\" \"*.md\"",
"lint": "eslint static/src",
"lint:fix": "eslint static/src --fix",
"build": "esbuild static/src/main.js --bundle --format=esm --alias:@odoo/owl=./vendor/owl-orm/owl-global.js --outfile=static/dist/app.js",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"esbuild": "^0.28.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"prettier": "^3.0.0"
}
}