Skip to content

Instantly share code, notes, and snippets.

@andersevenrud
Created November 5, 2021 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andersevenrud/32b67c32974e7163a8ceeab91eaa6336 to your computer and use it in GitHub Desktop.
Save andersevenrud/32b67c32974e7163a8ceeab91eaa6336 to your computer and use it in GitHub Desktop.
{
"name": "@osjs/osjs",
"version": "3.1.12",
"description": "OS.js",
"main": "index.js",
"scripts": {
"test": "npm run eslint && npm run stylelint",
"eslint": "eslint 'src/client/**/*.js' 'src/server/**/*.js'",
"stylelint": "stylelint 'src/client/*.scss'",
"serve": "node src/server/index.js",
"build:manifest": "osjs-cli package:discover",
"package:discover": "osjs-cli package:discover",
"package:create": "osjs-cli package:create",
"make:auth": "osjs-cli make:auth",
"make:settings": "osjs-cli make:settings",
"make:vfs": "osjs-cli make:vfs",
"make:application": "osjs-cli make:application",
"make:iframe-application": "osjs-cli make:iframe-application",
"make:provider": "osjs-cli make:provider",
"build": "webpack && npx osjs-cli package:discover --copy",
"start": "node src/server/index.js --port $PORT",
"watch": "webpack --watch"
},
"keywords": [
"osjs"
],
"author": "Anders Evenrud <andersevenrud@gmail.com>",
"license": "BSD-2-Clause",
"devDependencies": {
"@osjs/dev-meta": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"source-map-loader": "^0.2.4"
},
"dependencies": {
"@osjs/calculator-application": "^1.2.8",
"@osjs/cli": "^3.1.3",
"@osjs/client": "^3.7.1",
"@osjs/dialogs": "^3.1.0",
"@osjs/draw-application": "^1.2.12",
"@osjs/filemanager-application": "^1.6.2",
"@osjs/freedesktop-sounds": "^3.0.3",
"@osjs/gnome-icons": "^4.0.5",
"@osjs/gui": "^4.0.36",
"@osjs/htmlviewer-application": "^1.2.6",
"@osjs/musicplayer-application": "^1.2.8",
"@osjs/panels": "^3.0.31",
"@osjs/preview-application": "^1.1.17",
"@osjs/server": "^3.2.3",
"@osjs/settings-application": "^1.1.8",
"@osjs/standard-theme": "^4.0.9",
"@osjs/textpad-application": "^1.2.7",
"hyperapp": "^1.2.10",
"typeface-roboto": "0.0.75"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osjs/OS.js.git"
},
"bugs": {
"url": "https://github.com/osjs/OS.js/issues"
},
"homepage": "https://www.os-js.org",
"engines": {
"node": "14"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 8
},
"extends": "@osjs/eslint-config"
},
"stylelint": {
"extends": "@osjs/stylelint-config"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{}
]
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment