-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.34 KB
/
package.json
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
41
42
43
{
"$schema": "https://json.schemastore.org/package.json",
"name": "wp-block-nonogram",
"version": "0.2.3",
"description": "Create and solve Nonogram puzzles in the WordPress block editor.",
"author": "todays-mitsui <todays.mitsui@gmail.com>",
"license": "MIT",
"main": "build/index.js",
"files": [
"nonogram.php",
"build/*"
],
"scripts": {
"start": "run-p start:wp-env start:wp-scripts",
"build": "run-s build:plugin build:standalone",
"build:plugin": "wp-scripts build",
"build:standalone": "wp-scripts build src/view.js --output-path=standalone",
"fmt": "wp-scripts format",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start:wp-env": "wp-env start",
"start:wp-scripts": "wp-scripts start",
"stop": "wp-env stop",
"clean": "wp-env clean",
"destroy": "wp-env destroy",
"logs": "wp-env logs",
"test": "run-s test:unit test:e2e",
"test:unit": "wp-scripts test-unit-js",
"test:e2e": "wp-scripts test-playwright",
"test:e2e:debug": "wp-scripts test-playwright --debug"
},
"devDependencies": {
"@wordpress/element": "^5.35.0",
"@wordpress/env": "^9.10.0",
"@wordpress/scripts": "^27.9.0",
"konva": "^9.3.11",
"npm-run-all2": "^6.2.0",
"react-konva": "^18.2.10"
}
}