Files
product_inventory/package.json
Ben Miller 1068c912dc Implement interactive execution plan and strict HTML validation
Features:
- **Interactive Checklist**: 'Review Changes' modal now updates in real-time as save tasks complete.
- **Signal Logging**: Backend emits [SIGNAL] logs for deletions, adoptions, uploads, and reorders.
- **UI Cleanup**: Removed redundant textual 'Execute Progress' log pane.

Build & Quality:
- **HTML Validation**: Added 	ools/validate_html.ts to build pipeline to prevent syntax errors in embedded JS.
- **Strict Build**:
pm run build now runs alidate:html first.
2026-01-02 00:23:30 -07:00

45 lines
1.3 KiB
JSON

{
"name": "product_inventory",
"version": "0.0.1",
"description": "",
"sideEffects": [
"global.ts"
],
"scripts": {
"validate:html": "ts-node tools/validate_html.ts",
"build": "npm run validate:html && npm run lint && webpack --mode production",
"lint": "eslint \"src/**/*.{ts,js,html}\"",
"deploy": "clasp push",
"test": "jest",
"test:log": "jest > test_output.txt 2>&1",
"prepare": "husky"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/google-apps-script": "^1.0.85",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cheerio": "^1.1.2",
"copy-webpack-plugin": "^13.0.1",
"eslint": "^8.57.1",
"eslint-plugin-html": "^8.1.3",
"gas-webpack-plugin": "^2.6.0",
"glob": "^13.0.0",
"graphql-tag": "^2.12.6",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"shopify-admin-api-typings": "github:beepmill/shopify-admin-api-typings",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"graphql": {
"schema": "https://localhost:3001/graphql",
"documents": "**/*.{graphql,js,ts,jsx,tsx}"
}
}