-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
46
47
48
{
"name": "open-mission-compressor",
"version": "0.0.4",
"description": "Pack and unpack files",
"author": "BHyeonKim",
"repository": {
"type": "git",
"url": "https://github.com/Runzipper/core"
},
"license": "ISC",
"type": "module",
"main": "index.ts",
"scripts": {
"start": "./dist/index.cjs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "tsup src/index.ts",
"lint": "prettier --write . && eslint --fix ."
},
"bin": {
"open-mission-compressor": "./dist/index.cjs"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@jest/globals": "^30.2.0",
"@tsconfig/recommended": "^1.0.11",
"@types/cli-progress": "^3.11.6",
"@types/jest": "^30.0.0",
"babel-jest": "^30.2.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"cli-progress": "^3.12.0"
}
}