-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.47 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@kienstra/machine-learning",
"version": "0.1.0",
"description": "Adds a machine learning block.",
"author": "Ryan Kienstra",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"plugin",
"AI"
],
"homepage": "https://github.com/kienstra/machine-learning#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kienstra/machine-learning.git"
},
"bugs": {
"url": "https://github.com/kienstra/machine-learning/issues"
},
"directories": {
"test": "tests"
},
"dependencies": {
"@tensorflow-models/qna": "1.0.1",
"@tensorflow/tfjs": "2.8.6",
"@tensorflow/tfjs-converter": "3.19.0",
"@tensorflow/tfjs-core": "3.19.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.3",
"@testing-library/user-event": "13.5.0",
"@wordpress/components": "19.17.0",
"@wordpress/data": "6.15.0",
"@wordpress/dom-ready": "3.15.0",
"@wordpress/e2e-test-utils": "7.11.0",
"@wordpress/editor": "12.14.0",
"@wordpress/element": "4.13.0",
"@wordpress/env": "5.1.0",
"@wordpress/eslint-plugin": "12.9.0",
"@wordpress/i18n": "4.15.0",
"@wordpress/rich-text": "5.13.0",
"@wordpress/scripts": "23.7.0",
"@wordpress/url": "3.16.0",
"classnames": "2.3.1",
"eslint": "^8.21.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "4.3.8",
"puppeteer": "16.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"build": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"deploy": "grunt deploy",
"dev": "wp-scripts start",
"env": "wp-env",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "wp-scripts lint-js js/src",
"lint:js:files": "wp-scripts lint-js",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:php": "vendor/bin/phpcs",
"lint:php:fix": "vendor/bin/phpcbf",
"packages-update": "wp-scripts packages-update",
"test:e2e": "wp-scripts test-e2e --config=tests/e2e/jest.config.js --runInBand",
"test:e2e:interactive": "npm run test:e2e -- --puppeteer-interactive",
"test:e2e:update-snapshot": "npm run test:e2e -- --updateSnapshot",
"test:js": "wp-scripts test-unit-js --config=tests/js/jest.config.js",
"test:php": "composer test",
"typescript": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "./bin/pre-commit.sh"
}
}
}