-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "terminal-emulator",
"version": "0.1.0",
"description": "A frontend terminal emulator with a modular infrastructure and emulated filesystem",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx webpack --config webpack.config.js",
"copy": "cp -R ./src/assets/ ./dist/assets/ && cp ./src/index.html ./dist/",
"clear:dist": "rm -rf ./dist/; mkdir ./dist/",
"build:dist": "npm run clear:dist; npm run build; npm run copy",
"dev": "nodemon --watch ./src --exec npm run build:dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Throvn/terminal-emulator.git"
},
"keywords": [
"typescript",
"javascript",
"open",
"source",
"fun",
"contributing",
"welcome"
],
"author": "Louis Stanko",
"license": "ISC",
"bugs": {
"url": "https://github.com/Throvn/terminal-emulator/issues"
},
"homepage": "https://github.com/Throvn/terminal-emulator#readme",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"tapable": "1.1.3"
}
}