forked from kamakiri01/vrchat-activity-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 831 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
39
{
"name": "vrchat-activity-viewer",
"version": "6.2.1",
"description": "VRChat log viewer",
"main": "lib/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint \"./src/**/*.ts\""
},
"bin": {
"va": "bin/run"
},
"files": [
"lib"
],
"keywords": [
"vrchat"
],
"author": "kamakiri01",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.23.0",
"typescript": "^4.1.3"
},
"dependencies": {
"commander": "^6.2.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/kamakiri01/vrchat-activity-viewer.git"
}
}