-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.09 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
{
"name": "gutenberg-native-ai",
"version": "1.0.0",
"description": "A plugin that extends the Gutenberg editor with AI features designed to work natively with WordPress.",
"author": "Hekki Vihersalo",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"zip": "wp-scripts plugin-zip",
"format": "wp-scripts format",
"lint": "yarn lint:css && yarn lint:js && yarn lint:php",
"lint:css": "wp-scripts lint-style 'src/**/*.css'",
"lint:js": "wp-scripts lint-js",
"lint:php": "./vendor/bin/phpcs",
"lint:php:fix": "./vendor/bin/phpcbf",
"test:php": "./vendor/bin/phpunit"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/wordpress__block-editor": "^11.5.15",
"@types/wordpress__blocks": "^12.5.14",
"@wordpress/block-editor": "^12.19.1",
"@wordpress/blocks": "^12.28.1",
"@wordpress/env": "^10.4.0",
"@wordpress/eslint-plugin": "^17.11.0",
"@wordpress/i18n": "^4.51.0",
"@wordpress/prettier-config": "^3.11.0",
"@wordpress/scripts": "^26.13.0",
"@wordpress/server-side-render": "^5.3.0",
"@wordpress/stylelint-config": "^21.38.0",
"copy-webpack-plugin": "^12.0.2",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"prettier": "3.2.5",
"stylelint-config-prettier": "^9.0.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"resolutions": {
"@typescript-eslint/typescript-estree": "^7.16.0"
},
"files": [
".github/workflows",
".vscode",
"build/admin",
"build/ai",
"includes",
"languages",
"src",
"types",
".editorconfig",
".eslintignore",
".eslintrc.json",
".gitignore",
".prettierignore",
".prettierrc.js",
".stylelintrc.json",
"bootstrap.php",
"composer.json",
"composer.lock",
"gutenberg-native-ai.php",
"index.php",
"LICENSE.txt",
"package.json",
"phpcs.xml",
"README.md",
"tsconfig.json",
"uninstall.php",
"webpack.config.js",
"yarn.lock"
]
}