-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.66 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
{
"name": "jsmeow",
"version": "1.0.9",
"description": "NodeJS for external Game Hacking",
"types": "./types/index.d.ts",
"main": "./dist/index.commonjs.js",
"exports": {
".": {
"import": "./dist/index.esm.mjs",
"require": "./dist/index.commonjs.js"
}
},
"author": "DroidXrX <droidxrx@gmail.com> (https://github.com/droidxrx)",
"homepage": "https://github.com/droidxrx/JSMeow#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/droidxrx/JSMeow.git"
},
"license": "MIT",
"keywords": [
"JSMeow",
"pyMeow",
"hacking",
"esp",
"read-memory",
"write-memory"
],
"engines": {
"node": ">=16.14.0"
},
"os": [
"win32"
],
"cpu": [
"x64"
],
"scripts": {
"install": "node-gyp rebuild --arch=x64 --release",
"build-ts": "SET NODE_ENV=development && npx rimraf dist publish && npx rollup -c ./rollup.config.js",
"build-ts-publish": "SET NODE_ENV=production && npx rimraf dist publish && npx rollup -c ./rollup.config.js"
},
"gypfile": true,
"dependencies": {
"node-addon-api": "^4.3.0",
"structron-v2": "1.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"clean-publish": "^4.0.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"fs-extra": "^10.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^2.0.5",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}