79 lines
2.4 KiB
JSON
79 lines
2.4 KiB
JSON
|
{
|
||
|
"name": "@woocommerce/integrate-plugin",
|
||
|
"version": "0.1.0",
|
||
|
"description": "WooCommerce plugin integration scripts.",
|
||
|
"author": "Automattic",
|
||
|
"license": "GPL-3.0-or-later",
|
||
|
"keywords": [
|
||
|
"wordpress",
|
||
|
"woocommerce",
|
||
|
"plugin"
|
||
|
],
|
||
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/integrate-plugin/README.md",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
||
|
},
|
||
|
"main": "build/index.js",
|
||
|
"bin": {
|
||
|
"woo-integrate-plugin": "./build/index.js"
|
||
|
},
|
||
|
"types": "build-types",
|
||
|
"react-native": "src/index",
|
||
|
"sideEffects": [],
|
||
|
"publishConfig": {
|
||
|
"access": "public"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@wordpress/create-block": "wp-6.0",
|
||
|
"chalk": "^4.1.2",
|
||
|
"change-case": "^4.1.2",
|
||
|
"commander": "^9.2.0",
|
||
|
"execa": "^4.0.2",
|
||
|
"fast-glob": "^3.2.7",
|
||
|
"inquirer": "^7.1.0",
|
||
|
"npm-package-arg": "^8.1.5",
|
||
|
"rimraf": "^3.0.2",
|
||
|
"write-pkg": "^4.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.21.3",
|
||
|
"@babel/runtime": "^7.17.2",
|
||
|
"@testing-library/jest-dom": "^5.16.2",
|
||
|
"@testing-library/react-hooks": "^8.0.1",
|
||
|
"@types/jest": "^27.4.1",
|
||
|
"@types/node": "^16.18.18",
|
||
|
"@types/testing-library__jest-dom": "^5.14.3",
|
||
|
"@woocommerce/eslint-plugin": "workspace:*",
|
||
|
"@woocommerce/internal-js-tests": "workspace:*",
|
||
|
"@wordpress/browserslist-config": "wp-6.0",
|
||
|
"copy-webpack-plugin": "^9.1.0",
|
||
|
"css-loader": "^3.6.0",
|
||
|
"eslint": "^8.32.0",
|
||
|
"jest": "^27.5.1",
|
||
|
"jest-cli": "^27.5.1",
|
||
|
"rimraf": "^3.0.2",
|
||
|
"ts-jest": "^27.1.3",
|
||
|
"typescript": "^5.1.6",
|
||
|
"webpack": "^5.70.0",
|
||
|
"webpack-cli": "^3.3.12"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"turbo:build": "pnpm run build:js",
|
||
|
"turbo:test": "jest --config ./jest.config.json",
|
||
|
"prepare": "composer install",
|
||
|
"changelog": "composer exec -- changelogger",
|
||
|
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
|
||
|
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
|
||
|
"test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name",
|
||
|
"lint": "eslint --output-file eslint_report.json --format json src",
|
||
|
"build:js": "tsc --project tsconfig.json && tsc --project tsconfig-cjs.json",
|
||
|
"start": "concurrently \"tsc --project tsconfig.json --watch\" \"tsc --project tsconfig-cjs.json --watch\" \"webpack --watch\"",
|
||
|
"prepack": "pnpm run clean && pnpm run build",
|
||
|
"lint:fix": "eslint src --fix"
|
||
|
}
|
||
|
}
|