noVNC/package.json

103 lines
2.8 KiB
JSON

{
"name": "@kasmtech/novnc",
"version": "1.3.0",
"description": "An HTML5 VNC client",
"browser": "lib/rfb",
"directories": {
"lib": "lib",
"doc": "docs",
"test": "tests"
},
"files": [
"lib",
"AUTHORS",
"VERSION",
"docs/API.md",
"docs/LIBRARY.md",
"docs/LICENSE*",
"core",
"vendor/pako"
],
"scripts": {
"lint": "eslint app core po/po2js po/xgettext-html tests utils",
"test": "karma start karma.conf.js",
"prepublish": "node ./utils/use_require.js --clean",
"serve": "vite",
"build": "vite build && mkdir -p dist/app dist/core/decoders/qoi && cp -a app/locale dist/app && cp package.json dist/ && cp core/decoders/qoi/qoi_viewer_bg.wasm dist/core/decoders/qoi && cp dist/index.html dist/vnc.html",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kasmtech/noVNC.git"
},
"author": "Kasm Technologies (https://www.kasmweb.com)",
"contributors": [],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/kasmtech/noVNC/issues"
},
"homepage": "https://github.com/kasmtech/noVNC",
"devDependencies": {
"@babel/cli": "*",
"@babel/core": "*",
"@babel/plugin-syntax-dynamic-import": "*",
"@babel/plugin-transform-modules-commonjs": "*",
"@babel/preset-env": "*",
"@chiragrupani/karma-chromium-edge-launcher": "*",
"@interactjs/actions": "^1.10.27",
"@interactjs/interact": "^1.10.27",
"@interactjs/pointer-events": "^1.10.27",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-import-redirect": "*",
"babelify": "*",
"browserify": "*",
"chai": "*",
"commander": "*",
"core-js": "3.18.3",
"css-loader": "^5.0.1",
"es-module-loader": "*",
"eslint": "*",
"file-loader": "^6.2.0",
"fs-extra": "*",
"html-loader": "^1.3.2",
"jsdom": "*",
"karma": "*",
"karma-chrome-launcher": "*",
"karma-firefox-launcher": "*",
"karma-ie-launcher": "*",
"karma-mocha": "*",
"karma-mocha-reporter": "*",
"karma-safari-launcher": "*",
"karma-script-launcher": "*",
"karma-sinon-chai": "*",
"mini-css-extract-plugin": "^1.3.3",
"mocha": "*",
"node-getopt": "*",
"pako": "^2.1.0",
"po2json": "*",
"postcss-loader": "^4.1.0",
"regenerator-runtime": "^0.13.9",
"requirejs": "*",
"rollup": "*",
"rollup-plugin-node-resolve": "*",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"sinon": "*",
"sinon-chai": "^2.8.0",
"vite": "^6.0.5",
"vite-plugin-env-compatible": "^2.0.1",
"vite-plugin-minify": "^2.1.0",
"vite-plugin-restart": "^0.4.2"
},
"keywords": [
"vnc",
"rfb",
"novnc",
"websockify"
],
"dependencies": {
"mime": "^4.0.7"
}
}