woocommerce/packages/js/navigation/package.json

127 lines
3.1 KiB
JSON
Raw Normal View History

{
"name": "@woocommerce/navigation",
"version": "8.1.0",
"description": "WooCommerce navigation utilities.",
"author": "Automattic",
"license": "GPL-3.0-or-later",
"engines": {
"node": "^16.14.1",
"pnpm": "^8.6.7"
},
"keywords": [
"wordpress",
"woocommerce",
"navigation"
],
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/navigation/README.md",
"repository": {
"type": "git",
"url": "https://github.com/woocommerce/woocommerce.git"
},
"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-11-02 21:49:41 +00:00
"scripts": {
"build": "pnpm --if-present --filter=\"$npm_package_name...\" run build:project",
"build:project": "pnpm --if-present run /^build:project:.*$/",
"build:project:cjs": "wireit",
"build:project:esm": "wireit",
"changelog": "composer install && composer exec -- changelogger",
"lint": "pnpm --if-present run '/^lint:lang:.*$/'",
"lint:fix": "pnpm --if-present run '/^lint:fix:lang:.*$/'",
"lint:fix:lang:js": "eslint src --fix",
"lint:lang:js": "eslint --output-file eslint_report.json --format json src",
"prepack": "pnpm run build",
"test": "pnpm --if-present run '/^test:lang:.*$/'",
"test:lang:js": "wireit",
"watch:build": "pnpm run build:project --watch"
},
"lint-staged": {
"*.(t|j)s?(x)": [
"pnpm lint:fix",
"pnpm test-staged"
]
},
"dependencies": {
"@wordpress/api-fetch": "wp-6.0",
"@wordpress/components": "wp-6.0",
"@wordpress/compose": "wp-6.0",
"@wordpress/element": "wp-6.0",
"@wordpress/hooks": "wp-6.0",
"@wordpress/i18n": "wp-6.0",
"@wordpress/notices": "wp-6.0",
"@wordpress/url": "wp-6.0",
"history": "^5.3.0",
2023-12-09 15:12:20 +00:00
"qs": "^6.11.2",
"react-router-dom": "~6.3.0"
},
"peerDependencies": {
"lodash": "^4.17.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
2023-12-09 15:12:20 +00:00
"@babel/core": "^7.23.5",
"@babel/runtime": "^7.23.5",
"@types/jest": "^27.5.2",
"@types/qs": "^6.9.10",
2022-04-26 23:16:35 +00:00
"@woocommerce/eslint-plugin": "workspace:*",
"@woocommerce/internal-js-tests": "workspace:*",
2023-12-09 15:12:20 +00:00
"concurrently": "^7.6.0",
"eslint": "^8.55.0",
"jest": "~27.5.1",
"jest-cli": "~27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "~29.1.1",
"typescript": "^5.3.3",
"wireit": "^0.14.1"
},
2023-11-02 21:49:41 +00:00
"wireit": {
"build:project:cjs": {
"command": "tsc --project tsconfig-cjs.json",
"files": [
"tsconfig-cjs.json",
"src/**/*.{js,jsx,ts,tsx}",
"typings/**/*.ts"
],
"output": [
"build"
],
"dependencies": [
"dependencyOutputs"
]
},
"build:project:esm": {
"command": "tsc --project tsconfig.json",
"files": [
"tsconfig.json",
"src/**/*.{js,jsx,ts,tsx}",
"typings/**/*.ts"
],
"output": [
"build-module",
"./build-types"
],
"dependencies": [
"dependencyOutputs"
]
},
"test:lang:js": {
"command": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name",
"dependencies": [
"build:project"
]
},
"dependencyOutputs": {
"allowUsuallyExcludedPaths": true,
"files": [
"required"
]
}
}
2023-11-02 21:49:41 +00:00
}