-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.84 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": "inpsyde-google-tag-manager",
"version": "1.0.0",
"description": "Inpsyde Google Tag Manager Plugin",
"author": {
"name": "Syde GmbH",
"email": "hello@syde.com",
"url": "https://syde.com/"
},
"license": "GPL-2.0-or-later",
"keywords": [
"Google Tag Manager",
"GTM",
"dataLayer",
"WordPress",
"WordPress Plugin"
],
"homepage": "https://syde.com",
"repository": {
"type": "git",
"url": "github.com/inpsyde/inpsyde-google-tag-manager/"
},
"bugs": "https://github.com/inpsyde/google-tag-manager/issues",
"dependencies": {
"@types/react": "18.3.1",
"@wordpress/api-fetch": "6.39.12",
"@wordpress/block-editor": "12.10.12",
"@wordpress/block-library": "8.19.12",
"@wordpress/blocks": "12.19.12",
"@wordpress/components": "25.8.12",
"@wordpress/compose": "6.19.12",
"@wordpress/data": "9.12.12",
"@wordpress/edit-post": "7.19.12",
"@wordpress/editor": "13.19.12",
"@wordpress/element": "5.19.12",
"@wordpress/i18n": "4.42.12",
"@wordpress/icons": "^9.37.0",
"@wordpress/server-side-render": "4.19.12",
"react": "18.3.1"
},
"devDependencies": {
"@wordpress/scripts": "^26",
"@wordpress/env": "^10.3.0",
"@inpsyde/playwright-utils": "2.0.0-beta.2",
"@playwright/test": "^1.45.1",
"copy-webpack-plugin": "^12.0",
"typescript": "^4.9.4"
},
"scripts": {
"build": "wp-scripts build",
"build:dev": "wp-scripts build --mode development",
"start": "wp-scripts start",
"lint:md": "wp-scripts lint-md-docs",
"lint:js": "wp-scripts lint-js --ignore-pattern assets/*",
"lint:js:fix": "wp-scripts lint-js --ignore-pattern assets/*",
"lint:style": "wp-scripts lint-style resources/scss/**/*.scss",
"test:e2e": "wp-scripts test-playwright --config tests/e2e/playwright.config.ts",
"wp-env": "wp-env",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip"
},
"files": [
"index.php",
"README.md",
"LICENSE",
"vendor",
"resources",
"assets",
"src",
"docs"
],
"browserslist": [
"last 2 versions, not dead"
],
"engines": {
"node": ">=18"
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
],
"rules": {
"@wordpress/dependency-group": "error",
"@wordpress/i18n-text-domain": [
"error",
{
"allowedTextDomain": "inpsyde-google-tag-manager"
}
],
"@wordpress/no-unsafe-wp-apis": "off"
}
}
}