-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "w3gjs",
"version": "4.0.0",
"description": "A native JavaScript WarCraft 3 replay parser implementation.",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"engines": {
"node": ">=20.x"
},
"scripts": {
"test": "jest --config test/jest.config.js",
"test:smoke": "node test/smoke/node-cjs.js && node test/smoke/node-esm.mjs && jest --config test/jest.smoke.config.js --no-coverage",
"test:coverage": "jest --collectCoverage --config test/jest.config.js",
"lint": "eslint --ext .ts,.js src/ test/ && prettier --check .",
"lint:fix": "eslint --ext .jsx,.js src/** --fix && prettier --write .",
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.esm.json && node scripts/set-package-types.js"
},
"dependencies": {
"protobufjs": "^8.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jsonschema": "^1.5.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.9",
"typescript": "^6.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PBug90/w3gjs.git"
},
"keywords": [
"w3g",
"warcraft",
"replay",
"parser"
],
"author": "PBug90",
"license": "MIT",
"bugs": {
"url": "https://github.com/PBug90/w3gjs/issues"
},
"homepage": "https://github.com/PBug90/w3gjs#readme"
}