-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
72 lines (72 loc) · 2.04 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
{
"name": "@van-ons/block-editor",
"version": "1.0.0",
"description": "A standalone implementation of the WordPress Block Editor",
"main": "dist/index.js",
"module": "dist/index.js",
"keywords": [
"block",
"editor",
"gutenberg",
"block-editor"
],
"author": "Maurice Wijnia",
"license": "GPL-2.0-or-later",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run build:ts -- --watch & npm run build:sass -- --watch",
"start": "vite playground",
"prebuild": "npm run clean",
"build": "npm run build:ts && npm run build:sass",
"build:sass": "sass src/styles.scss dist/styles.css",
"build:ts": "tsc"
},
"dependencies": {
"@wordpress/api-fetch": "^6.6.0",
"@wordpress/base-styles": "^4.5.0",
"@wordpress/block-editor": "^9.1.0",
"@wordpress/block-library": "^7.6.0",
"@wordpress/blocks": "^11.8.0",
"@wordpress/components": "^19.11.0",
"@wordpress/data": "^6.9.0",
"@wordpress/element": "^4.7.0",
"@wordpress/format-library": "^3.7.0",
"@wordpress/hooks": "^3.9.0",
"@wordpress/keyboard-shortcuts": "^3.7.0",
"@wordpress/server-side-render": "^3.7.0",
"axios": "^0.21.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.1.4",
"mini-css-extract-plugin": "^2.4.5",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"vite": "^2.9.9",
"webpack": "^5.64.2",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"react": "~17.0.2",
"react-dom": "~17.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VanOns/block-editor.git"
},
"bugs": {
"url": "https://github.com/VanOns/block-editor/issues"
},
"homepage": "https://github.com/VanOns/block-editor#readme"
}