-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1014 Bytes
/
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
{
"name": "mac-wechat-app-tracker",
"version": "$VERSION",
"description": "macOS WeChat.app Header Tracker",
"type": "module",
"scripts": {
"clean": "shx rm -fr class-dump/*",
"version": "defaults read /Applications/WeChat.app/Contents/Info CFBundleShortVersionString",
"class-dump": "./bin/class-dump-to-subfolders.sh",
"test": "echo test test",
"track": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node bin/track.ts"
},
"engines": {
"node": ">= 16",
"npm": ">=7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/mac-wechat-app-tracker.git"
},
"keywords": [
"wechat",
"macos",
"objc",
"class-dump"
],
"author": "",
"bugs": {
"url": "https://github.com/wechaty/mac-wechat-app-tracker/issues"
},
"homepage": "https://github.com/wechaty/mac-wechat-app-tracker#readme",
"dependencies": {
"js-beautify": "^1.6.10"
},
"devDependencies": {
"@chatie/tsconfig": "^4.5.3"
}
}