-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.68 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@redpanda-data/docs-ui",
"description": "UI project for the Redpanda documentation site.",
"homepage": "https://docs.redpanda.com",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/redpanda-data/docs-ui.git"
},
"engines": {
"node": ">= 18.0.0"
},
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"@algolia/autocomplete-plugin-tags": "^1.12.2",
"@asciidoctor/core": "~2.2",
"@asciidoctor/tabs": "^1.0.0-beta.6",
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@docsearch/js": "^3.3.3",
"@fontsource/roboto": "~4.5",
"@fontsource/roboto-mono": "~4.5",
"@kapaai/react-sdk": "^0.9.0",
"autoprefixer": "~9.7",
"babelify": "^10.0.0",
"browser-pack-flat": "~3.4",
"browserify": "~16.5",
"cssnano": "~4.1",
"dompurify": "^3.2.5",
"esbuild": "^0.25.5",
"eslint": "~6.8",
"eslint-config-standard": "~14.1",
"eslint-plugin-import": "~2.20",
"eslint-plugin-node": "~11.1",
"eslint-plugin-promise": "~4.2",
"eslint-plugin-standard": "~4.0",
"fancy-log": "~1.3",
"fs-extra": "~8.1",
"gulp": "~4.0",
"gulp-concat": "~2.6",
"gulp-connect": "~5.7",
"gulp-eslint": "~6.0",
"gulp-if": "^3.0.0",
"gulp-imagemin": "~6.2",
"gulp-postcss": "~8.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-stylelint": "~13.0",
"gulp-uglify": "~3.0",
"gulp-vinyl-zip": "~2.2",
"handlebars": "~4.7",
"highlight.js": "9.18.3",
"js-yaml": "~3.13",
"lucide-react": "^0.508.0",
"marked": "^15.0.11",
"marked-highlight": "^2.2.1",
"merge-stream": "~2.0",
"postcss-calc": "~7.0",
"postcss-custom-properties": "~9.1",
"postcss-import": "~12.0",
"postcss-url": "~8.0",
"prettier-eslint": "~9.0",
"puppeteer": "^21.0.0",
"express": "^4.18.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"require-directory": "~2.1",
"require-from-string": "~2.0",
"stylelint": "~13.3",
"stylelint-config-standard": "~20.0",
"vinyl-buffer": "^1.0.1",
"vinyl-fs": "~3.0",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"test:headless": "node tests/bloblang-playground/test-runner.js",
"test:playground": "npm run build:wasm && npm run test:headless",
"test:interactive": "node tests/bloblang-interactive/test-runner.js",
"test:all": "npm run test:playground && npm run test:interactive",
"build:wasm": "cd blobl-editor/wasm && GOOS=js GOARCH=wasm go build -o ../../src/static/blobl.wasm .",
"copy:wasm-exec": "cp \"$(go env GOROOT)/lib/wasm/wasm_exec.js\" src/js/vendor/",
"serve:playground": "npx serve ."
}
}