-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
93 lines (93 loc) · 2.57 KB
/
package.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@10up/block-components",
"publishConfig": {
"access": "public"
},
"version": "1.19.3",
"description": "10up Components built for the WordPress Block Editor.",
"main": "./dist/index.js",
"source": "index.ts",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "10up-toolkit lint-js",
"test": "10up-toolkit test-unit-jest",
"build": "npm run clean-dist && 10up-toolkit build",
"start": "10up-toolkit start",
"clean": "10up-toolkit clean",
"clean-dist": "rm -rf ./dist",
"build-test-env": "npm run build --workspaces --if-present",
"start-test-env": "npm run start-env -w example/ && npm run import-media -w example/",
"test:e2e": "cypress open",
"prepublishOnly": "npm run build",
"cypress:open": "cypress open --config-file ./cypress.config.js --e2e --browser chrome",
"cypress:run": "cypress run --config-file ./cypress.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/10up/block-components.git"
},
"workspaces": [
"./",
"example/"
],
"keywords": [
"gutenberg",
"WordPress",
"block-editor"
],
"author": {
"name": "10up",
"email": "[email protected]",
"url": "https://10up.com"
},
"files": [
"dist",
"README.md"
],
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/10up/block-components.git/issues"
},
"homepage": "https://github.com/10up/block-components.git#readme",
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@floating-ui/react-dom": "^2.1.0",
"@leeoniya/ufuzzy": "^1.0.14",
"@tanstack/react-query": "^5.40.1",
"@typescript-eslint/parser": "^6.21.0",
"@wordpress/icons": "^10.0.0",
"array-move": "^4.0.0",
"react-window": "^1.8.10",
"uuid": "^9.0.1",
"wp-types": "^3.65.0"
},
"devDependencies": {
"@10up/cypress-wp-utils": "github:10up/cypress-wp-utils#build",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@types/react-window": "^1.8.8",
"@types/uuid": "^9.0.8",
"@types/wordpress__block-editor": "^11.5.14",
"@wordpress/block-editor": "^13.0.0",
"@wordpress/components": "^28.0.0",
"@wordpress/core-data": "^6.35.0",
"@wordpress/data": "^9.28.0",
"@wordpress/dependency-extraction-webpack-plugin": "^5.8.0",
"@wordpress/element": "^5.35.0",
"10up-toolkit": "^6.2.0",
"classnames": "^2.5.1",
"cypress": "^13.8.1",
"cypress-localstorage-commands": "^2.2.5"
},
"overrides": {
"react-autosize-textarea": {
"react-dom": "^18.0.0",
"react": "^18.0.0"
}
}
}