2023-03-10 14:58:02 +00:00
|
|
|
{
|
|
|
|
"name": "@woocommerce/admin-layout",
|
2023-11-28 20:23:08 +00:00
|
|
|
"version": "1.0.0",
|
2023-03-10 14:58:02 +00:00
|
|
|
"description": "WooCommerce admin layout copmonents and utilities.",
|
2023-12-06 19:36:12 +00:00
|
|
|
"author": "Automattic",
|
|
|
|
"license": "GPL-2.0-or-later",
|
2023-03-10 14:58:02 +00:00
|
|
|
"keywords": [
|
|
|
|
"wordpress",
|
|
|
|
"woocommerce"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/admin-layout/README.md",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
|
|
|
},
|
2023-12-06 19:36:12 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
|
|
|
},
|
|
|
|
"main": "build/index.js",
|
|
|
|
"module": "build-module/index.js",
|
|
|
|
"types": "build-types",
|
|
|
|
"react-native": "src/index",
|
2023-03-10 14:58:02 +00:00
|
|
|
"sideEffects": [
|
|
|
|
"build-style/**",
|
|
|
|
"src/**/*.scss"
|
|
|
|
],
|
2023-12-06 19:36:12 +00:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
2023-12-06 17:32:32 +00:00
|
|
|
},
|
2023-12-06 19:36:12 +00:00
|
|
|
"scripts": {
|
2023-11-02 00:04:18 +00:00
|
|
|
"build": "pnpm --filter=\"$npm_package_name...\" run build:project",
|
|
|
|
"build:project": "pnpm run /^build:project:.*$/",
|
|
|
|
"build:project:esm": "wireit",
|
|
|
|
"build:project:cjs": "wireit",
|
|
|
|
"build:project:css": "wireit",
|
|
|
|
"changelog": "composer install && composer exec -- changelogger",
|
|
|
|
"lint": "pnpm run '/^lint:lang:.*$/'",
|
|
|
|
"lint:fix": "pnpm run '/^lint:fix:lang:.*$/'",
|
|
|
|
"lint:lang:js": "eslint --output-file eslint_report.json --format json src",
|
|
|
|
"lint:fix:lang:js": "eslint src --fix",
|
|
|
|
"prepack": "pnpm run build",
|
|
|
|
"watch:build": "pnpm run build:project --watch"
|
2023-03-10 14:58:02 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-09 15:12:20 +00:00
|
|
|
"@types/react": "^17.0.71",
|
|
|
|
"@types/wordpress__components": "^19.10.5",
|
2023-03-10 14:58:02 +00:00
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
|
|
|
"@woocommerce/internal-style-build": "workspace:*",
|
|
|
|
"@wordpress/browserslist-config": "wp-6.0",
|
2023-12-09 15:12:20 +00:00
|
|
|
"concurrently": "^7.6.0",
|
2023-03-10 14:58:02 +00:00
|
|
|
"css-loader": "^3.6.0",
|
2023-12-09 15:12:20 +00:00
|
|
|
"eslint": "^8.55.0",
|
2023-12-05 08:36:30 +00:00
|
|
|
"jest": "~27.5.1",
|
|
|
|
"jest-cli": "~27.5.1",
|
2023-03-10 14:58:02 +00:00
|
|
|
"postcss-loader": "^4.3.0",
|
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
2023-11-29 18:00:23 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2023-12-09 15:12:20 +00:00
|
|
|
"sass-loader": "^10.5.0",
|
2023-12-05 08:36:30 +00:00
|
|
|
"ts-jest": "~29.1.1",
|
2023-12-09 15:12:20 +00:00
|
|
|
"typescript": "^5.3.3",
|
|
|
|
"webpack": "^5.89.0",
|
2023-10-23 21:05:59 +00:00
|
|
|
"webpack-cli": "^3.3.12",
|
|
|
|
"wireit": "^0.14.1"
|
2023-03-10 14:58:02 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-12-09 15:16:39 +00:00
|
|
|
"@types/react": "^17.0.71",
|
2023-03-10 14:58:02 +00:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2"
|
|
|
|
},
|
2023-12-06 19:36:12 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@woocommerce/components": "workspace:*",
|
|
|
|
"@wordpress/components": "wp-6.0",
|
|
|
|
"@wordpress/element": "wp-6.0"
|
2023-11-02 00:04:18 +00:00
|
|
|
},
|
|
|
|
"wireit": {
|
|
|
|
"build:project:esm": {
|
|
|
|
"command": "tsc --project tsconfig.json",
|
|
|
|
"files": [
|
|
|
|
"tsconfig.json",
|
|
|
|
"src/**/*.{js,jsx,ts,tsx}",
|
|
|
|
"typings/**/*.ts"
|
|
|
|
],
|
|
|
|
"dependencies": [
|
|
|
|
"dependencyOutputs"
|
|
|
|
],
|
|
|
|
"output": [
|
|
|
|
"build-types",
|
|
|
|
"build-module"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"build:project:cjs": {
|
|
|
|
"command": "tsc --project tsconfig-cjs.json",
|
|
|
|
"files": [
|
2023-11-02 17:26:55 +00:00
|
|
|
"tsconfig-cjs.json",
|
2023-11-02 00:04:18 +00:00
|
|
|
"src/**/*.{js,jsx,ts,tsx}",
|
|
|
|
"typings/**/*.ts"
|
|
|
|
],
|
|
|
|
"dependencies": [
|
|
|
|
"dependencyOutputs"
|
|
|
|
],
|
|
|
|
"output": [
|
|
|
|
"build"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"build:project:css": {
|
|
|
|
"command": "webpack",
|
|
|
|
"files": [
|
|
|
|
"webpack.config.js",
|
|
|
|
"src/**/*.scss"
|
|
|
|
],
|
|
|
|
"dependencies": [
|
|
|
|
"dependencyOutputs"
|
|
|
|
],
|
|
|
|
"output": [
|
|
|
|
"build-style"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencyOutputs": {
|
|
|
|
"allowUsuallyExcludedPaths": true,
|
|
|
|
"files": [ "required" ]
|
|
|
|
}
|
2023-03-10 14:58:02 +00:00
|
|
|
}
|
|
|
|
}
|