-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 887 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 887 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
28
29
30
31
32
33
34
35
{
"name": "@10up/toolkit",
"private": true,
"author": {
"name": "10up",
"email": "info@10up.com",
"url": "https://10up.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/10up/10up-scripts.git"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"dev": "npm run wp-env start -w=projects/10up-theme -- --xdebug && npm run start -w=projects/10up-theme"
},
"workspaces": [
"packages/*",
"projects/*"
],
"bundleDependencies": false,
"devDependencies": {
"@changesets/cli": "^2.26.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1"
},
"description": "Collection of reusable scripts for 10up development.",
"engines": {
"node": ">=14",
"npm": ">=7"
}
}