-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.32 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
{
"name": "wasabio",
"version": "1.3.0",
"description": "WebAssembly and SharedArrayBuffer IO. Pronounced 'wassabee-yo'.",
"repository": {
"type": "git",
"url": "https://github.com/3p3r/wasabio.git"
},
"main": "index.js",
"scripts": {
"postinstall": "patch-package",
"test": "ts-mocha && karma start --single-run && NODE_OPTIONS='--import tsx' node test/test.mirror.ts",
"lint": "prettier --check .",
"cosmo": "prettier --write .",
"build": "NODE_OPTIONS='--import tsx' webpack --mode=production",
"debug": "NODE_OPTIONS='--import tsx' webpack --mode=development"
},
"keywords": [
"webassembly",
"sharedarraybuffer",
"webworker",
"web",
"worker",
"thread",
"threading",
"concurrency"
],
"author": "Sepehr Laal",
"license": "MIT",
"optionalDependencies": {
"@sinclair/typebox": "^0.32.20",
"glob": "^10.3.12",
"schema-utils": "^4.2.0"
},
"devDependencies": {
"@types/atob-lite": "^2.0.2",
"@types/chai": "^4.3.14",
"@types/karma": "^6.3.8",
"@types/lodash": "^4.17.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/typedarray-to-buffer": "^4.0.4",
"@types/webpack": "^5.28.5",
"assert": "^2.1.0",
"atob-lite": "^2.0.0",
"buffer": "^6.0.3",
"chai": "^4.3.7",
"chalk": "^5.3.0",
"copy-webpack-plugin": "^12.0.2",
"dts-bundle-generator": "^9.3.1",
"esbuild-loader": "^4.1.0",
"exponential-backoff": "^3.1.1",
"jszip": "^3.10.1",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.1",
"lodash": "^4.17.21",
"memfs": "^4.8.1",
"mocha": "^10.3.0",
"patch-package": "^8.0.0",
"path-browserify": "^1.0.1",
"prettier": "^3.2.5",
"process": "^0.11.10",
"puppeteer": "^22.6.1",
"stream-browserify": "^3.0.0",
"string-replace-loader": "^3.1.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typedarray-to-buffer": "^4.0.0",
"typescript": "^5.4.3",
"url": "^0.11.3",
"url-loader": "^4.1.1",
"web-worker": "^1.3.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-shell-plugin-next": "^2.3.1",
"worker-loader": "^3.0.8"
},
"prettier": {
"tabWidth": 2,
"useTabs": true,
"trailingComma": "all",
"semi": true,
"singleQuote": false,
"printWidth": 120
}
}