2020-11-09 07:17:08 +00:00
|
|
|
{
|
2022-06-03 23:05:26 +00:00
|
|
|
"name": "@woocommerce/notices",
|
2022-03-22 08:08:06 +00:00
|
|
|
"version": "4.0.1",
|
2020-11-09 07:17:08 +00:00
|
|
|
"description": "State management for notices.",
|
|
|
|
"author": "The WordPress Contributors",
|
|
|
|
"license": "GPL-2.0-or-later",
|
2022-09-26 22:30:52 +00:00
|
|
|
"engines": {
|
|
|
|
"node": "^16.13.1",
|
2022-10-10 03:59:51 +00:00
|
|
|
"pnpm": "^7.13.3"
|
2022-09-26 22:30:52 +00:00
|
|
|
},
|
2020-11-09 07:17:08 +00:00
|
|
|
"keywords": [
|
|
|
|
"wordpress",
|
|
|
|
"gutenberg",
|
|
|
|
"notices"
|
|
|
|
],
|
2022-06-03 23:05:26 +00:00
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/notices/README.md",
|
2020-11-09 07:17:08 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-05-31 22:42:00 +00:00
|
|
|
"url": "https://github.com/woocommerce/woocommerge.git",
|
2022-06-03 23:05:26 +00:00
|
|
|
"directory": "packages/js/notices"
|
2020-11-09 07:17:08 +00:00
|
|
|
},
|
|
|
|
"bugs": {
|
2022-05-31 22:42:00 +00:00
|
|
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
2020-11-09 07:17:08 +00:00
|
|
|
},
|
|
|
|
"main": "build/index.js",
|
|
|
|
"module": "build-module/index.js",
|
2022-05-20 05:09:25 +00:00
|
|
|
"types": "build-types",
|
2020-11-09 07:17:08 +00:00
|
|
|
"react-native": "src/index",
|
|
|
|
"dependencies": {
|
2022-04-07 06:16:46 +00:00
|
|
|
"@wordpress/a11y": "^3.5.0",
|
2022-08-31 04:06:51 +00:00
|
|
|
"@wordpress/data": "^6.15.0",
|
2022-03-08 02:11:12 +00:00
|
|
|
"@wordpress/notices": "^3.3.2"
|
2021-03-12 03:58:51 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2022-03-15 03:04:46 +00:00
|
|
|
"lodash": "^4.17.0",
|
2022-08-24 15:15:22 +00:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2"
|
2020-11-09 07:17:08 +00:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
2021-04-12 20:58:19 +00:00
|
|
|
},
|
2021-07-14 20:38:57 +00:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2022-08-05 00:03:17 +00:00
|
|
|
"turbo:build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
2022-03-04 04:01:16 +00:00
|
|
|
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
|
2022-09-15 21:21:42 +00:00
|
|
|
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
|
2022-08-05 00:03:17 +00:00
|
|
|
"lint": "eslint src",
|
2021-07-14 20:38:57 +00:00
|
|
|
"start": "tsc --build --watch",
|
2022-03-28 08:42:22 +00:00
|
|
|
"prepack": "pnpm run clean && pnpm run build",
|
2022-04-26 22:47:07 +00:00
|
|
|
"lint:fix": "eslint src --fix"
|
2022-03-15 03:04:46 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-20 05:09:25 +00:00
|
|
|
"@automattic/data-stores": "^2.0.1",
|
2022-03-15 03:04:46 +00:00
|
|
|
"@babel/core": "^7.17.5",
|
2022-08-05 07:19:08 +00:00
|
|
|
"@types/lodash": "^4.14.182",
|
|
|
|
"@types/wordpress__data": "^6.0.0",
|
2022-08-31 04:06:51 +00:00
|
|
|
"@types/wordpress__notices": "^3.5.0",
|
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
2022-03-28 08:42:22 +00:00
|
|
|
"eslint": "^8.12.0",
|
2022-03-15 03:04:46 +00:00
|
|
|
"jest": "^27.5.1",
|
|
|
|
"jest-cli": "^27.5.1",
|
2022-05-20 05:09:25 +00:00
|
|
|
"redux": "^4.2.0",
|
2022-03-15 03:04:46 +00:00
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"ts-jest": "^27.1.3",
|
2022-09-29 21:59:07 +00:00
|
|
|
"typescript": "^4.8.3"
|
2022-04-06 08:58:17 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.(t|j)s?(x)": [
|
2022-04-26 22:47:07 +00:00
|
|
|
"pnpm lint:fix"
|
2022-04-06 08:58:17 +00:00
|
|
|
]
|
2021-07-14 20:38:57 +00:00
|
|
|
}
|
2020-11-09 07:17:08 +00:00
|
|
|
}
|