-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.72 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
{
"name": "@jar-analyzer/jsd",
"version": "1.2.0",
"description": "Pure TypeScript Java class decompiler - single-file library, no wasm, no native deps",
"type": "module",
"main": "./dist/jsd.min.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/jsd.min.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"keywords": [
"java",
"decompiler",
"bytecode",
"class-file",
"reverse-engineering",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jar-analyzer/jsd.git"
},
"homepage": "https://github.com/jar-analyzer/jsd#readme",
"bugs": {
"url": "https://github.com/jar-analyzer/jsd/issues"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "tsc --emitDeclarationOnly && node scripts/build.mjs",
"release": "node scripts/publish.mjs",
"sync": "npm run build && node scripts/sync-docs.mjs",
"docs:check": "node scripts/sync-docs.mjs --check",
"check": "tsc --noEmit",
"test": "node test/run.mjs",
"test:unit": "node test/run.mjs unit",
"test:roundtrip": "node test/run.mjs roundtrip",
"test:modern": "node test/run.mjs modern",
"test:bytecode": "node test/run.mjs bytecode",
"test:package": "node test/run.mjs package",
"test:fuzz": "node test/run.mjs fuzz",
"test:all": "node test/run.mjs all",
"test:browser": "node test/run.mjs browser"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^26.4.1",
"esbuild": "^0.28.2",
"prettier": "3.9.6",
"prettier-plugin-java": "2.10.3",
"typescript": "^7.0.2"
}
}