This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
156 lines (156 loc) · 4.9 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "@web3os-core/kernel",
"description": "The OS for the next web",
"homepage": "https://web3os.sh",
"funding": "https://github.com/sponsors/mathiscode",
"version": "0.8.2",
"license": "MIT",
"main": "dist/kernel.js",
"module": "src/kernel.js",
"author": {
"name": "Jay Mathis",
"email": "code@mathis.network",
"url": "https://github.com/mathiscode"
},
"contributors": [
{
"name": "Gary Walker",
"email": "gwalker@mathis.network",
"url": "https://github.com/garyjwalker"
}
],
"repository": {
"type": "git",
"url": "https://github.com/web3os-org/kernel"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.13.0",
"npm": ">=8.1.0"
},
"scripts": {
"dev": "npm run start:dev",
"start": "npm-run-all --parallel start:kernel start:docs",
"start:dev": "npm-run-all --parallel start start:browser",
"start:kernel": "cross-env NODE_ENV=development webpack serve",
"start:docs": "npm run watch:docs",
"start:browser": "google-chrome --remote-debugging-port=39222 https://localhost:30443",
"watch": "npm-run-all --parallel watch:kernel watch:docs",
"watch:kernel": "webpack --watch",
"watch:docs": "nodemon --exec npm run build:docs -w src",
"build": "npm-run-all build:docs build:kernel",
"build:kernel": "webpack build && shx cp -r docs dist/",
"build:docs": "jsdoc -c .jsdoc.json && shx cp -r src/assets/docs/* docs/",
"clean": "npm-run-all --parallel clean:kernel clean:docs",
"clean:kernel": "shx rm -rf dist/*",
"clean:docs": "shx rm -rf docs/*",
"test": "env-cmd cypress open",
"prepare": "npm-run-all clean build",
"server:socket": "node scripts/server-socket.js",
"server:bbs": "bin/websocketd --devconsole --port=30103 nodemon scripts/server-bbs.js",
"server:testnet": "hardhat node"
},
"dependencies": {
"@iconify/iconify": "^2.2.1",
"@material/mwc-button": "^0.25.3",
"@material/mwc-icon-button": "^0.25.3",
"@material/mwc-snackbar": "^0.25.3",
"@sweetalert2/theme-dark": "^5.0.12",
"@web3-onboard/core": "^2.3.1",
"@web3-onboard/injected-wallets": "^2.0.11",
"@web3-onboard/trezor": "^2.1.3",
"animate.css": "^4.1.1",
"ansi-colors": "^4.1.1",
"ansi-escape-sequences": "^6.2.1",
"arg": "^5.0.1",
"awesome-notifications": "^3.1.3",
"browserfs": "https://github.com/web3os-org/BrowserFS.git",
"bytes": "^3.1.1",
"canvas-confetti": "^1.4.0",
"cbor": "^8.1.0",
"codemirror": "^5.64.0",
"columnify": "^1.5.4",
"commander": "^9.3.0",
"ctxmenu": "^1.4.3",
"custom-event-js": "^1.0.3",
"figlet": "^1.5.2",
"https-browserify": "^1.0.0",
"i18next": "^21.8.9",
"i18next-browser-languagedetector": "^6.1.4",
"mime-types": "^2.1.34",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"peerjs": "^2.0.0-beta.3",
"reblessed": "^0.1.84",
"regenerator-runtime": "^0.13.9",
"shell-quote": "^1.7.3",
"simple-keyboard": "^3.4.109",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"sweetalert2": "^11.3.3",
"systemjs": "^6.12.1",
"topbar": "^1.0.1",
"unzipit": "^1.4.0",
"url": "^0.11.0",
"uuid": "^9.0.0",
"web3": "^1.8.0",
"web3-eth-contract": "^1.7.3",
"webtorrent": "^1.8.13",
"winbox": "^0.2.1",
"xterm": "^5.0.0",
"xterm-addon-attach": "^0.7.0",
"xterm-addon-fit": "^0.6.0",
"xterm-addon-web-links": "^0.7.0",
"xterm-addon-webgl": "^0.13.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.5",
"assert": "^2.0.0",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"copy-webpack-plugin": "^10.2.0",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.5.1",
"cypress": "^9.5.3",
"env-cmd": "^10.1.0",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"esm": "^3.2.25",
"file-loader": "^6.2.0",
"generate-template-files": "^3.2.0",
"hardhat": "^2.9.3",
"html-webpack-plugin": "^5.5.0",
"image-minimizer-webpack-plugin": "^3.2.0",
"imagemin-gifsicle": "^7.0.0",
"img-optimize-loader": "^1.0.7",
"jsdoc": "^3.6.10",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"process": "^0.11.10",
"raw-loader": "^4.0.2",
"shx": "^0.3.4",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"util": "^0.12.4",
"webpack": "^5.65.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1",
"workbox-cacheable-response": "^6.4.2",
"workbox-expiration": "^6.4.2",
"workbox-routing": "^6.4.2",
"workbox-strategies": "^6.4.2",
"ws": "^8.8.0",
"wss": "^3.3.4"
}
}