63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
"name": "@woocommerce/notices",
|
|
"version": "4.0.1",
|
|
"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",
|
|
"react-native": "src/index",
|
|
"dependencies": {
|
|
"@wordpress/a11y": "^3.5.0",
|
|
"@wordpress/data": "^6.3.0",
|
|
"@wordpress/notices": "^3.3.2"
|
|
},
|
|
"peerDependencies": {
|
|
"lodash": "^4.17.0",
|
|
"react": "^17.0.0",
|
|
"react-dom": "^17.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"postinstall": "composer install",
|
|
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
|
|
"build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
|
"start": "tsc --build --watch",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"lint": "eslint src",
|
|
"lint:fix": "eslint src --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.17.5",
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
|
"eslint": "^8.12.0",
|
|
"jest": "^27.5.1",
|
|
"jest-cli": "^27.5.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.1.3",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"lint-staged": {
|
|
"*.(t|j)s?(x)": [
|
|
"pnpm lint:fix"
|
|
]
|
|
}
|
|
}
|