67 lines
2.0 KiB
JSON
67 lines
2.0 KiB
JSON
{
|
|
"name": "@woocommerce/experimental",
|
|
"version": "3.0.0",
|
|
"description": "WooCommerce experimental components.",
|
|
"author": "Automattic",
|
|
"license": "GPL-3.0-or-later",
|
|
"keywords": [
|
|
"wordpress",
|
|
"woocommerce",
|
|
"experimental"
|
|
],
|
|
"homepage": "https://github.com/woocommerce/woocommerce-admin/tree/main/packages/experimental/README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/woocommerce/woocommerce-admin.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/woocommerce/woocommerce-admin/issues"
|
|
},
|
|
"main": "build/index.js",
|
|
"module": "build-module/index.js",
|
|
"react-native": "src/index",
|
|
"sideEffects": [
|
|
"build-style/**",
|
|
"src/**/*.scss"
|
|
],
|
|
"dependencies": {
|
|
"@woocommerce/components": "workspace:*",
|
|
"@wordpress/components": "19.4.0",
|
|
"@wordpress/element": "4.1.1",
|
|
"@wordpress/i18n": "4.3.1",
|
|
"@wordpress/icons": "6.3.0",
|
|
"@wordpress/keycodes": "3.3.1",
|
|
"classnames": "^2.3.1",
|
|
"dompurify": "2.2.9",
|
|
"gridicons": "3.4.0",
|
|
"moment": "2.29.1",
|
|
"react-transition-group": "4.4.1",
|
|
"react-visibility-sensor": "5.1.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/runtime": "^7.17.2",
|
|
"@storybook/addon-console": "1.2.3",
|
|
"@storybook/react": "6.2.9",
|
|
"@testing-library/react": "12.1.3",
|
|
"@testing-library/user-event": "13.5.0",
|
|
"@types/dompurify": "2.2.2",
|
|
"@types/react-transition-group": "4.4.1",
|
|
"@woocommerce/style-build": "workspace:*",
|
|
"concurrently": "5.3.0"
|
|
},
|
|
"scripts": {
|
|
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
|
|
"build": "pnpm run build:js && pnpm run build:css",
|
|
"build:js": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
|
"build:css": "webpack",
|
|
"start": "concurrently \"tsc --build --watch\" \"webpack --watch\"",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"test": "pnpm run build && pnpm run test:nobuild",
|
|
"test:nobuild": "jest --config ./jest.config.json",
|
|
"test-staged": "jest --bail --config ./jest.config.json --findRelatedTests"
|
|
}
|
|
}
|