-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@faustwp/block-editor-utils",
"version": "0.3.5",
"description": "Faust Block Editor Utils Package",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@wordpress/block-editor": "^12.11.1",
"@wordpress/blocks": "^12.20.1",
"@wordpress/components": "^25.9.1",
"@wordpress/element": "5.20.0",
"@wordpress/hooks": "^3.43.0",
"@wordpress/i18n": "^4.43.0"
},
"devDependencies": {
"@react-spring/web": "9.7.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/node": "^18.0.6",
"@types/react": "^18.2.28",
"@types/wordpress__block-editor": "11.5.5",
"@types/wordpress__blocks": "12.5.6",
"@wordpress/jest-preset-default": "^11.14.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"rimraf": "^4.4.0",
"ts-jest": "29.1.1"
},
"scripts": {
"prebuild": "npm run clean",
"postbuild": "npm run package",
"clean": "rimraf dist",
"package": "node ../../scripts/package.js",
"test": "",
"test:format": "prettier . --check",
"build": "npm run build-esm && npm run build-cjs",
"build-esm": "tsc -p .",
"build-cjs": "tsc -p tsconfig.cjs.json",
"dev": "tsc -p tsconfig.json --watch",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/wpengine/faustjs.git"
},
"author": "Faust.js Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/wpengine/faustjs/issues"
},
"homepage": "https://github.com/wpengine/faustjs#readme",
"engines": {
"node": ">=18",
"npm": ">=8"
}
}