-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@automattic/search",
"version": "1.1.0",
"description": "Automattic Search.",
"homepage": "https://github.com/Automattic/wp-calypso",
"license": "GPL-2.0-or-later",
"author": "Automattic Inc.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"calypso:src": "src/index.ts",
"exports": {
".": {
"calypso:src": "./src/index.ts",
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"sideEffects": [
"*.css",
"*.scss"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/wp-calypso.git",
"directory": "packages/search"
},
"publishConfig": {
"access": "public"
},
"bugs": "https://github.com/Automattic/wp-calypso/issues",
"files": [
"dist",
"src"
],
"types": "dist/types",
"dependencies": {
"@automattic/typography": "workspace:^",
"@babel/runtime": "^7.27.1",
"@wordpress/base-styles": "^9.1.0",
"@wordpress/components": "^35.0.0",
"@wordpress/compose": "patch:@wordpress/compose@npm%3A8.1.0#~/.yarn/patches/@wordpress-compose-npm-8.1.0-ea108e3129.patch",
"@wordpress/icons": "^13.3.0",
"@wordpress/react-i18n": "^4.48.0",
"clsx": "^2.1.1",
"fuse.js": "^6.6.2",
"lodash": "^4.17.21",
"redux": "^5.0.1",
"tslib": "^2.8.1"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@automattic/calypso-color-schemes": "workspace:^",
"@automattic/calypso-storybook": "workspace:^",
"@automattic/calypso-typescript-config": "workspace:^",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@wordpress/data": "^10.48.0",
"@wordpress/is-shallow-equal": "^5.48.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^10.4.2",
"typescript": "^6.0.3",
"webpack": "^5.99.8"
},
"scripts": {
"clean": "tsc --build ./tsconfig.json ./tsconfig-cjs.json --clean && rm -rf dist",
"build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json && copy-assets",
"prepack": "yarn run clean && yarn run build",
"storybook:start": "storybook dev"
}
}