-
-
Notifications
You must be signed in to change notification settings - Fork 822
/
package.json
90 lines (90 loc) · 2.42 KB
/
package.json
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
87
88
89
90
{
"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",
"watch": "webpack --watch"
},
"keywords": [
"osjs"
],
"author": "Anders Evenrud <[email protected]>",
"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": ">=10.0.0"
},
"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"
]
}
}