-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
{
"name": "@emscripten-forge/untarjs",
"version": "5.2.1",
"description": "A simple project to unzip .zip, .tar.bz2 and .conda files in the front-end",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build:wasm": "node build_wasm.js",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"build": "yarn run clean && tsc && yarn run build:wasm",
"build:prod": "yarn run clean && tsc && yarn run build:wasm",
"prettier": "prettier --list-different --write \"src/**/*.ts\"",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"eslint": "eslint --ext .ts --fix .",
"eslint:check": "eslint --ext .ts."
},
"files": [
"lib/"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"untarjs",
"unpack",
"tar",
"zstd",
"bzip2"
],
"homepage": "https://github.com/emscripten-forge/untarjs",
"bugs": {
"url": "https://github.com/emscripten-forge/untarjs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/emscripten-forge/untarjs"
},
"author": "Anastasiia Sliusar",
"license": "MIT",
"dependencies": {
"assert": "^2.1.0",
"process": "^0.11.10",
"url": "^0.11.4"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "~6.13.2",
"@typescript-eslint/parser": "~6.13.2",
"eslint": "~8.55.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-react": "~7.33.2",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"rimraf": "^3.0.2",
"typescript": "^5",
"typescript-eslint": "^8.12.2"
}
}