-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.42 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.42 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": "syntaxhighlighter",
"version": "3.7.2",
"description": "Easily post syntax-highlighted code to your WordPress site without having to modify the code at all.",
"homepage": "https://alex.blog/wordpress-plugins/syntaxhighlighter/",
"author": "Alex Mills (Viper007Bond)",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/Viper007Bond/syntaxhighlighter.git"
},
"bugs": {
"url": "https://github.com/Viper007Bond/syntaxhighlighter/issues"
},
"scripts": {
"start": "wp-scripts start",
"build": "npm run build:assets && npm run archive",
"build:assets": "wp-scripts build && npm run create-dist",
"create-dist": "mkdir -p dist && mv build/index.js dist/blocks.build.js && mv build/index.css dist/blocks.editor.build.css && mv build/style-index.css dist/blocks.style.build.css",
"distclean": "rm -rf node_modules && rm -rf dist && rm -rf build",
"archive": "composer archive --file=$npm_package_name --format=zip"
},
"dependencies": {
"@wordpress/escape-html": "^3.47.0",
"@wordpress/create-block": "^4.90.0",
"@wordpress/scripts": "32.3.0",
"lodash.unescape": "^4.0.1",
"lodash.flow": "^3.5.0"
},
"overrides": {
"basic-ftp": "5.3.1",
"cookie": "0.7.2",
"cross-spawn": "7.0.6",
"form-data": "4.0.4",
"minimatch": "10.2.5",
"serialize-javascript": "7.0.5",
"tar-fs": "3.1.2",
"ws": "8.21.0"
}
}