This repository was archived by the owner on Feb 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"name": "@packfile/packfile-ts",
"version": "0.1.0",
"description": "The Packfile implementation for JavaScript and TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=18"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sinjs/packfile-ts.git"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint",
"test": "jest --config jestconfig.json",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run test && pnpm run lint",
"preversion": "pnpm run lint",
"version": "pnpm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"packfile",
"minecraft",
"typescript",
"modpack"
],
"author": "sinjs",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"expect": "^29.6.1",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"reflect-metadata": "^0.1.13"
}
}