This repository was archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.43 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.43 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
{
"name": "tutch-worker",
"version": "0.1.3",
"description": "A webworker interface/wrapper for Tutch.",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"prettier": "prettier --write **/*.json src/*.ts src/*.tsx src/**/*.ts src/**/*.tsx",
"watch:worker": "webpack --watch --config worker.config.js",
"watch:client": "webpack --watch --config client.config.js",
"watch": "npm-run-all --parallel watch:worker watch:client",
"webpack:worker": "webpack --config worker.config.js --mode production",
"tsc": "tsc",
"pythonserver": "python -m http.server",
"build": "npm-run-all tsc webpack:worker",
"start": "npm-run-all --parallel watch:worker watch:client pythonserver"
},
"files": [
"/worker.js",
"/dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/retutch/tutch-worker.git"
},
"author": "Chris Martens and Rob Simmons",
"license": "GPL-3.0",
"dependencies": {
"tutch": "0.1.3"
},
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1",
"typescript": "^3.6.3",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"prettier": {
"printWidth": 110,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5"
}
}