-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.3 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.3 KB
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
{
"name": "possimpible",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "./node_modules/webpack/bin/webpack.js serve",
"buildboot": "./node_modules/webpack/bin/webpack.js",
"linkworker": "./node_modules/browserify/bin/cmd.js dist/worker/proc/main.js -p esmify -o dist/worker.img",
"compileworker": "tsc --project tsconfig.worker.json",
"docs": "mkdir -p docs/js && cp -r dist/favicon.png dist/fonts dist/fonts.css dist/index.html docs/ && cp -r dist/js/vm.js dist/js/chunk-vendors.js docs/js",
"buildworker": "yarn run compileworker && yarn run linkworker && rm -R dist/worker/",
"compileexecs": "./node_modules/webpack/bin/webpack.js --config webpack.toolchain.js",
"buildtoolchain": "yarn compiletoolchain && yarn run buildinitrd",
"compiletoolchain": "yarn compilelibraries && yarn compileexecs",
"buildinitrd": "mkdir -p dist/bin && ts-node -T utils/buildimg.ts",
"compilelibraries": "./node_modules/webpack/bin/webpack.js --config webpack.libraries.js",
"build": "yarn run buildworker && yarn run buildtoolchain && yarn run buildboot"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/xterm": "^3.0.0",
"event-iterator": "^2.0.0",
"local-echo": "git://github.com/wavesoft/local-echo.git",
"string-to-argv": "^1.0.0",
"types-webpack-bundler": "^1.0.2",
"ua-parser-js": "1.0.2",
"xterm": "^4.15.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-web-links": "^0.4.0"
},
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/node": "^17.0.4",
"@types/ua-parser-js": "^0.7.36",
"argparse": "^2.0.1",
"browserify": "^17.0.0",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.3.1",
"docsify-cli": "^4.4.3",
"esmify": "^2.1.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.5",
"structjs": "^0.2.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpack-remove-empty-scripts": "^0.7.2",
"xterm-webfont": "^2.0.0"
}
}