-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.22 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.22 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
{
"name": "memory-tool",
"version": "1.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "High-performance Windows memory manipulation library built with Rust and N-API",
"keywords": [
"rust",
"memory",
"process",
"napi",
"addon",
"windows",
"memory-tool",
"debug",
"hacking"
],
"author": "PromiseAll",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PromiseAll/memory-tool.git"
},
"bugs": {
"url": "https://github.com/PromiseAll/memory-tool/issues"
},
"homepage": "https://github.com/PromiseAll/memory-tool#readme",
"scripts": {
"build": "napi build --platform --release -o dist",
"build:debug": "napi build --platform -o dist",
"dev": "cargo build",
"test": "node test.js",
"clean": "cargo clean && rimraf dist",
"format": "cargo fmt",
"format:check": "cargo fmt --check"
},
"engines": {
"node": ">=16.0.0"
},
"os": [
"win32"
],
"cpu": [
"x64",
"ia32"
],
"files": [
"dist/",
"readme.md",
"readme.zh-CN.md",
"LICENSE"
],
"devDependencies": {
"@napi-rs/cli": "3.5.0",
"rimraf": "6.1.2"
},
"packageManager": "pnpm@9.0.0"
}