-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.2 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.2 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
{
"name": "talking-head",
"version": "1.5.0",
"private": true,
"description": "AI-generated podcast-style audio WordPress plugin.",
"author": "Per Soderlind",
"license": "GPL-2.0-or-later",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"test:js": "vitest run",
"test:js:watch": "vitest",
"lint:js": "wp-scripts lint-js .",
"lint:css": "wp-scripts lint-style .",
"lint:pkg": "wp-scripts lint-pkg-json",
"i18n": "npm run i18n:make-pot && npm run i18n:update-po && npm run i18n:make-mo && npm run i18n:make-json && npm run i18n:make-php",
"i18n:make-pot": "wp i18n make-pot . languages/talking-head.pot --exclude=node_modules,vendor,tests,build --domain=talking-head",
"i18n:update-po": "wp i18n update-po languages/talking-head.pot languages/",
"i18n:make-mo": "wp i18n make-mo languages/",
"i18n:make-json": "wp i18n make-json languages/ --no-purge --use-map=i18n-map.json",
"i18n:make-php": "wp i18n make-php languages/"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@wordpress/scripts": "^31.4.0",
"esbuild": "^0.27.4",
"jsdom": "^29.0.1",
"vitest": "^4.0.18"
}
}