-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 734 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 734 Bytes
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
{
"name": "github-release-posts",
"version": "1.0.0",
"description": "Automatically generate WordPress blog posts from GitHub releases using AI.",
"scripts": {
"start": "10up-toolkit start",
"build": "10up-toolkit build",
"lint:js": "10up-toolkit lint-js",
"lint:css": "10up-toolkit lint-style",
"lint": "npm run lint:js && npm run lint:css",
"test": "10up-toolkit test-unit-jest"
},
"@10up/scripts": {
"entry": {
"admin": "./assets/js/admin/index.js",
"editor": "./assets/js/editor/index.js",
"admin-style": "./assets/css/admin/style.css"
}
},
"devDependencies": {
"@10up/scripts": "^1.3.4"
},
"overrides": {
"eslint-plugin-jsdoc": "^46.10.1",
"prettier": "npm:wp-prettier@2.2.1-beta-1"
}
}