forked from foxglove/wasm-bz2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "@lichtblick/wasm-bz2",
"version": "1.0.1",
"description": "Bzip2 decompression compiled to WebAssembly",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Lichtblick-Suite/wasm-bz2.git"
},
"author": {
"name": "Lichtblick",
"email": "[email protected]"
},
"main": "dist/index.js",
"files": [
"dist",
"src",
"wasm"
],
"scripts": {
"build:ts": "tsc -b",
"build:wasm": "./build.sh",
"prepack": "npm run build:ts && npm run build:wasm",
"clean": "tsc -b --clean",
"lint": "eslint --report-unused-disable-directives --fix .",
"lint:ci": "eslint --report-unused-disable-directives .",
"test": "jest"
},
"devDependencies": {
"@lichtblick/eslint-plugin": "1.0.1",
"@lichtblick/tsconfig": "1.0.0",
"@types/emscripten": "1.39.5",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"babel-plugin-transform-import-meta": "2.0.0",
"esbuild": "0.14.8",
"esbuild-jest": "latest",
"eslint": "8.50.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-es": "4.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-prettier": "5.1.3",
"jest": "27.0.6",
"jest-ts-webcompat-resolver": "1.0.0",
"prettier": "3.3.2",
"typescript": "5.3.3"
},
"dependencies": {
"tslib": "^2"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}