This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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