forked from alexmojaki/pyodide-worker-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.12 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
{
"name": "pyodide-worker-runner",
"version": "1.3.3",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/alexmojaki/pyodide-worker-runner.git"
},
"license": "MIT",
"author": "Alex Hall <alex.mojaki@gmail.com>",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"lib/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rm -rf dist/ && webpack --mode production",
"format": "prettier --write '**/*.*' && eslint . --fix",
"lint": "prettier --check '**/*.*' && eslint .",
"prepare": "yarn build"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
]
]
},
"prettier": {
"bracketSpacing": false,
"trailingComma": "all"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"extends": [
"eslint:recommended"
],
"rules": {
"no-constant-condition": [
2,
{
"checkLoops": false
}
]
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
}
},
"dependencies": {
"p-retry": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.12.17",
"@babel/preset-env": "7.12.17",
"@types/lodash": "^4.14.180",
"babel-eslint": "10.1.0",
"comlink": "^4.3.1",
"comsync": "^0.0.8",
"eslint": "7.32.0",
"html-webpack-plugin": "^5.5.0",
"lodash": "^4.17.21",
"prettier": "2.1.2",
"prettier-plugin-packagejson": "2.2.13",
"pyodide": "^0.23.2",
"raw-loader": "^4.0.2",
"sync-message": "^0.0.10",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"url-loader": "^4.1.1",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"worker-loader": "^3.0.8"
},
"peerDependencies": {
"comsync": "*",
"pyodide": "^0.23.2"
}
}