-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.49 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 3.49 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
{
"name": "hyve-lite",
"version": "1.3.2",
"description": "An AI support bot.",
"scripts": {
"build": "npm-run-all build:*",
"build:backend": "wp-scripts build --webpack-src-dir=src/backend --output-path=build/backend --output-filename=index.js",
"build:frontend": "wp-scripts build --webpack-src-dir=src/frontend --output-path=build/frontend --output-filename=frontend.js",
"build:block": "wp-scripts build --webpack-src-dir=src/block --output-path=build/block --output-filename=index.js",
"build:addons": "wp-scripts build --webpack-src-dir=src/addons --output-path=build/addons --output-filename=index.js",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format ./src",
"lint:css": "wp-scripts lint-style ./src",
"lint:js": "wp-scripts lint-js ./src",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "npm-run-all --parallel start:*",
"start:backend": "wp-scripts start --webpack-src-dir=src/backend --output-path=build/backend --output-filename=index.js",
"start:frontend": "wp-scripts start --webpack-src-dir=src/frontend --output-path=build/frontend --output-filename=frontend.js",
"start:block": "wp-scripts start --webpack-src-dir=src/block --output-path=build/block --output-filename=index.js",
"start:addons": "wp-scripts start --webpack-src-dir=src/addons --output-path=build/addons --output-filename=index.js",
"dist": "bash bin/dist.sh",
"release": "npx semantic-release",
"test:playwright": "wp-scripts test-playwright --config ./tests/e2e/playwright.config.ts",
"test:playwright:help": "wp-scripts test-playwright --help --config ./tests/e2e/playwright.config.ts",
"test:playwright:debug": "wp-scripts test-playwright --debug --config ./tests/e2e/playwright.config.ts",
"test:playwright:ui": "wp-scripts test-playwright --ui --config ./tests/e2e/playwright.config.ts",
"env:test:unit": "wp-env run tests-cli --env-cwd=/var/www/html/wp-content/plugins/hyve-lite ./vendor/bin/phpunit",
"wp-env": "wp-env"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codeinwp/hyve-lite.git"
},
"keywords": [
"wordpress-plugin"
],
"author": "Hardeep Asrani <hardeep@themeisle.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Codeinwp/hyve-lite/issues"
},
"homepage": "https://github.com/Codeinwp/hyve-lite#readme",
"devDependencies": {
"@playwright/test": "^1.53.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/postcss": "^4.1.17",
"@wordpress/env": "^10.32.0",
"@wordpress/eslint-plugin": "^22.20.0",
"@wordpress/scripts": "^27.9.0",
"conventional-changelog-simple-preset": "^1.0.24",
"cssnano": "^7.1.1",
"eslint-config-wordpress": "^2.0.0",
"filenamify": "^4.3.0",
"grunt": "^1.6.1",
"grunt-version": "^3.0.1",
"grunt-wp-readme-to-markdown": "^2.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"replace-in-file": "^7.1.0",
"semantic-release": "^19.0.5",
"semantic-release-slack-bot": "^4.0.2",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.1.11"
},
"dependencies": {
"@wordpress/icons": "^10.32.0",
"chart.js": "^4.5.0",
"classnames": "^2.5.1",
"object-hash": "^3.0.0"
}
}