2020-11-09 07:17:08 +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",
|
|
|
|
"keywords": [
|
|
|
|
"wordpress",
|
|
|
|
"gutenberg",
|
|
|
|
"notices"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/WordPress/gutenberg/tree/master/packages/notices/README.md",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/WordPress/gutenberg.git",
|
|
|
|
"directory": "packages/notices"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/WordPress/gutenberg/issues"
|
|
|
|
},
|
|
|
|
"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-03-08 02:11:12 +00:00
|
|
|
"@wordpress/data": "^6.3.0",
|
|
|
|
"@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",
|
|
|
|
"react": "^17.0.0",
|
|
|
|
"react-dom": "^17.0.0"
|
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-05-05 03:26:36 +00:00
|
|
|
"postinstall": "composer install",
|
2022-03-04 04:01:16 +00:00
|
|
|
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
|
2021-07-14 20:38:57 +00:00
|
|
|
"build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
|
|
|
"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": "eslint src",
|
|
|
|
"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-04-26 23:16:35 +00:00
|
|
|
"@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",
|
|
|
|
"typescript": "^4.6.2"
|
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
|
|
|
}
|