-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.28 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
{
"name": "boilerplate",
"description": "boilerplate wordpress block",
"version": "0.0.1",
"contributors": [
"Erik Golinelli <[email protected]> (https://codekraft.it/)",
"John Hooks <[email protected]> (https://johnhooks.io/)"
],
"homepage": "https://github.com/wp-blocks/typescript-wp-block#readme",
"repository": {
"type": "git",
"url": "https://github.com/wp-blocks/typescript-wp-block.git"
},
"bugs": "https://github.com/wp-blocks/typescript-wp-block/issues",
"license": "GPL-2.0-or-later",
"main": "./build/boilerplate.js",
"typings": "./build/main.d.ts",
"files": ["build/*", "typescript-wp-block.php", "LICENSE.md", "readme.txt"],
"scripts": {
"packages-update": "npx wp-deps -—t 15.1",
"build": "wp-scripts build",
"start": "wp-scripts start",
"format": "wp-scripts format ./src",
"lint:css": "wp-scripts lint-style",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx .",
"wp-env:start": "wp-env start",
"wp-env:stop": "wp-env stop",
"wp-env:destroy": "wp-env destroy",
"test": "jest --silent=false --coverage",
"plugin-zip": "wp-scripts plugin-zip"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/babel__core": "^7.20.5",
"@types/expect-puppeteer": "^5.0.6",
"@types/jest": "^29.5.11",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/node": "^20.10.7",
"@types/puppeteer": "^7.0.4",
"@types/wordpress__block-editor": "^11.5.7",
"@typescript-eslint/parser": "^6.12.0",
"@wordpress/babel-plugin-makepot": "^5.30.0",
"@wordpress/block-editor": "11.3.0",
"@wordpress/blocks": "12.3.0",
"@wordpress/e2e-test-utils": "^10.17.0",
"@wordpress/e2e-tests": "^7.17.0",
"@wordpress/env": "^8.12.0",
"@wordpress/jest-preset-default": "^11.17.0",
"@wordpress/prettier-config": "^3.3.0",
"@wordpress/scripts": "^26.17.0",
"@wordpress/stylelint-config": "^21.29.0",
"@wp-blocks/tsconfig": "^0.1.0",
"babel-jest": "^29.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"jest-puppeteer": "^9.0.1",
"typescript": "^5.3.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"browserslist": ["extends @wordpress/browserslist-config"]
}