-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.99 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "blocks-everywhere",
"version": "1.23.0",
"description": "Gutenberg in WordPress comments, admin pages, bbPress, and BuddyPress.",
"main": "src/index.tsx",
"scripts": {
"start": "wp-scripts start",
"start:sync": "onchange '*.php' readme.txt 'build/**/*' 'classes/**/*.php' -- yarn build:sync",
"build": "wp-scripts build && ./bin/lintfix.sh",
"build:sync": "rsync -az --delete *.php readme.txt *.png build LICENSE.md classes build $npm_config_blocks_everywhere",
"release": "yarn build && rm -rf release && mkdir -p release && cp -R *.php readme.txt *.png build LICENSE.md classes release",
"release:sync": "rsync -az --delete release/ $npm_config_blocks_everywhere",
"dist": "yarn release && rm -rf dist && mkdir dist && mv release blocks-everywhere && zip blocks-everywhere.zip -r blocks-everywhere && mv blocks-everywhere release && mv blocks-everywhere.zip dist && release-it",
"dist:svn": "./bin/svn.sh $npm_package_version",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer run-script lint",
"test:php": "composer run-script test",
"update": "ncu -u"
},
"author": "Automattic",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@types/eslint": "^8.56.6",
"@wordpress/babel-preset-default": "^7.37.0",
"@wordpress/prettier-config": "^3.10.0",
"@wordpress/scripts": "32.3.0",
"babel-plugin-emotion": "^11.0.0",
"babel-plugin-inline-json-import": "^0.3.2",
"eslint": "^8.57.0",
"eslint-config-wpcalypso": "^6.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-wpcalypso": "^8.0.0",
"npm-check-updates": "^16.14.17",
"onchange": "^7.1.0",
"precss": "^4.0.0",
"release-it": "20.2.0",
"remove-files-webpack-plugin": "^1.5.0"
},
"dependencies": {
"@automattic/color-studio": "^2.5.0",
"@automattic/isolated-block-editor": "^2.29.0",
"@automattic/typography": "^1.0.0",
"use-debounce": "^10.0.0"
},
"resolutions": {
"@babel/plugin-transform-modules-systemjs": "^7.29.7",
"@babel/traverse": "^7.23.2",
"ansi-regex": "^5.0.1",
"axios": "^1.16.1",
"basic-ftp": "^5.0.5",
"body-parser": "^1.20.3",
"braces": "^3.0.3",
"cross-spawn": "^7.0.6",
"flatted": "^3.4.2",
"form-data": "^4.0.4",
"http-cache-semantics": "^4.2.0",
"http-proxy-middleware": "^2.0.7",
"ip": "^2.0.1",
"json5": "^2.2.3",
"loader-utils": "^2.0.4",
"lodash": "^4.18.1",
"minimist": "^1.2.8",
"minimatch": "^10.2.5",
"node-forge": "^1.4.0",
"path-to-regexp": "^8.4.2",
"picomatch": "^2.3.2",
"semver": "^7.8.1",
"serialize-javascript": "^7.0.5",
"svgo": "^3.3.3",
"tar": "^7.5.15",
"tar-fs": "^3.1.2",
"tmp": "^0.2.6",
"webpack": "^5.94.0",
"webpack-dev-middleware": "^5.3.4",
"ws": "^8.21.0"
},
"release-it": {
"github": {
"release": true,
"assets": [
"dist/blocks-everywhere.zip"
]
},
"npm": false
}
}