-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 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
49
50
51
52
53
54
55
56
57
58
{
"name": "@nexora-studios/mrpack.ts",
"version": "1.0.2",
"description": "A TypeScript library for handling mrpack files (ESM Only)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/NEXORA-Studios/mrpack.ts.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "tsc --watch",
"lint": "eslint . --ext .ts,.tsx --fix"
},
"keywords": [
"typescript",
"mrpack",
"minecraft",
"modrinth"
],
"author": "MoYuan-CN",
"license": "Apache-2.0",
"dependencies": {
"jszip": "^3.10.1"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.36.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "8.44.1",
"@typescript-eslint/parser": "8.44.1",
"eslint": "9.36.0",
"eslint-config-prettier": "10.1.8",
"globals": "16.4.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.4",
"ts-node": "10.9.2",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@iarna/toml": "^2.2.5"
}
}