- Ensure Shopify video sync updates Media Manager with active video previews - Fix "Image load failed" error for video icons by using Base64 SVG - Resolve Drive picker origin error by using google.script.host.origin - Fix Drive video playback issues by using Drive iframe player - Add `test:log` script to package.json for full output logging in Windows - Update .gitignore to exclude coverage, test_output.txt, and .agent/ - Remove test_output.txt from git tracking
36 lines
906 B
JSON
36 lines
906 B
JSON
{
|
|
"name": "product_inventory",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"sideEffects": [
|
|
"global.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "webpack --mode production",
|
|
"deploy": "clasp push",
|
|
"test": "jest",
|
|
"test:log": "jest > test_output.txt 2>&1",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"@types/google-apps-script": "^1.0.85",
|
|
"@types/jest": "^30.0.0",
|
|
"copy-webpack-plugin": "^13.0.1",
|
|
"gas-webpack-plugin": "^2.6.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}"
|
|
}
|
|
}
|