-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.35 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
{
"name": "openclawp",
"version": "0.1.0",
"private": true,
"description": "Build pipeline for openclaWP's chat block. The plugin itself is plain PHP — this only exists to bundle the React-driven chat surface that talks to the openclaWP agenttic JSON-RPC bridge.",
"scripts": {
"build": "npm run build:chat && npm run build:panel && npm run build:routines",
"build:chat": "wp-scripts build blocks/chat/src/view.js --output-path=blocks/chat/build",
"build:panel": "wp-scripts build blocks/chat-panel/src/view.js --output-path=blocks/chat-panel/build",
"build:routines": "wp-scripts build blocks/routines/src/view.js --output-path=blocks/routines/build && cp node_modules/@wordpress/dataviews/build-style/style.css blocks/routines/build/view.css",
"start": "wp-scripts start blocks/chat/src/view.js --output-path=blocks/chat/build",
"lint": "eslint blocks",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@automattic/agenttic-client": "^0.1.63",
"@automattic/agenttic-ui": "^0.1.63",
"@wordpress/dataviews": "^14.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@wordpress/eslint-plugin": "^25.1.0",
"@wordpress/scripts": "^30.0.0",
"eslint": "^9.0.0"
},
"overrides": {
"@wordpress/eslint-plugin": "^25.1.0",
"eslint": "^9.0.0"
}
}