-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 KB
/
package.json
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
70
71
72
73
74
{
"name": "@run-slicer/asm",
"version": "0.11.1",
"type": "module",
"author": "run-slicer",
"license": "MIT",
"description": "Modern age Java bytecode manipulation library for the JS ecosystem.",
"keywords": [
"java",
"bytecode",
"reader",
"writer"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
},
"./analysis/*": {
"types": "./dist/analysis/*.d.ts",
"import": "./dist/analysis/*.js"
},
"./attr": {
"types": "./dist/attr/index.d.ts",
"import": "./dist/attr/index.js"
},
"./attr/*": {
"types": "./dist/attr/*.d.ts",
"import": "./dist/attr/*.js"
},
"./insn": {
"types": "./dist/insn/index.d.ts",
"import": "./dist/insn/index.js"
},
"./insn/*": {
"types": "./dist/insn/*.d.ts",
"import": "./dist/insn/*.js"
},
"./spec": {
"types": "./dist/spec/index.d.ts",
"import": "./dist/spec/index.js"
},
"./spec/*": {
"types": "./dist/spec/*.d.ts",
"import": "./dist/spec/*.js"
}
},
"files": [
"./dist/**/*",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "mocha",
"format": "prettier . --write"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"chai": "^5.1.2",
"mocha": "^11.0.1",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf"
}