-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 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
35
36
37
38
39
40
{
"name": "my-scroll-block",
"version": "0.1.0",
"description": "An interactive block with the Interactivity API.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:css": "wp-scripts lint-style --fix",
"lint:js": "wp-scripts lint-js --fix",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"typecheck": "tsc --noEmit",
"playground:start": "npx @wp-playground/cli@latest server --auto-mount --login"
},
"files": [
"[^.]*"
],
"dependencies": {
"@wordpress/interactivity": "^6.28.0"
},
"devDependencies": {
"@playwright/test": "^1.56.0",
"@types/node": "^22.10.5",
"@wordpress/scripts": "^30.21.0",
"@wp-playground/cli": "^3.0.8",
"cross-env": "^7.0.3",
"prettier": "^3.6.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}