-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 730 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 730 Bytes
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
{
"name": "jselftools",
"version": "0.2.4",
"description": "tool for parsing elf files",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "echo 'no tests'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/archef2000/jselftools.git"
},
"keywords": [
"elf",
"parser"
],
"author": "archef2000",
"license": "MIT",
"bugs": {
"url": "https://github.com/archef2000/jselftools/issues"
},
"homepage": "https://github.com/archef2000/jselftools#readme",
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
}
}