-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.03 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
{
"name": "ahentic",
"version": "0.1.0",
"description": "An intelligent AI agent that understands your WordPress site and works alongside you to build, edit, troubleshoot, and manage it.",
"private": true,
"license": "GPL-2.0-or-later",
"engines": {
"node": ">=18"
},
"scripts": {
"prebuild": "npm run lint",
"build": "node scripts/update-build-type.js free && npm run sync-version ${npm_config_suffix} && wp-scripts build && npm run package ${npm_config_suffix}",
"start": "node scripts/update-build-type.js free && wp-scripts start",
"build:premium": "cd pro__premium_only && npm run build",
"start:premium": "cd pro__premium_only && npm run start",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"lint:css": "wp-scripts lint-style",
"lint:css:fix": "wp-scripts lint-style --fix",
"lint": "npm run lint:js && npm run lint:css",
"format": "wp-scripts format",
"package": "node scripts/package.js ${npm_config_suffix}",
"sync-version": "node scripts/sync-version.js",
"wp-env": "wp-env",
"test:php": "composer test",
"test:e2e": "playwright test",
"test:debug": "playwright test --ui",
"test": "npm run test:php && npm run test:e2e",
"docs:build": "npm --prefix docs-site run build",
"docs:test": "npm --prefix docs-site test",
"prepare": "husky"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"devDependencies": {
"@playwright/test": "^1.62.1",
"@wordpress/e2e-test-utils-playwright": "^1.52.0",
"@wordpress/env": "^11.12.0",
"@wordpress/eslint-plugin": "^22.15.0",
"@wordpress/prettier-config": "^4.29.0",
"@wordpress/scripts": "^30.0.0",
"@wordpress/stylelint-config": "^23.21.0",
"@wp-playground/cli": "^3.1.48",
"archiver": "^6.0.1",
"eslint": "^8.57.0",
"eslint-plugin-compat": "^6.0.2",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "^3.3.3"
},
"dependencies": {
"classnames": "^2.5.1",
"lucide-react": "^1.27.0"
},
"lint-staged": {
"*.js": [
"wp-scripts lint-js"
],
"*.css": [
"wp-scripts lint-style"
]
}
}