-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 902 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": "vrchat-client",
"version": "0.2.3",
"description": "Unofficial VRChat API Client for Node.js",
"main": "dist/main.js",
"repository": "https://github.com/LinaTsukusu/vrchat-client.git",
"author": "LinaTsukusu",
"license": "MIT",
"private": false,
"keywords": [
"vrchat",
"api"
],
"scripts": {
"build": "node_modules/.bin/tsc",
"start": "yarn build && node dist/main.js",
"test": "node_modules/.bin/mocha test/**/*.ts -r ts-node/register --timeout 60000",
"prepublishOnly": "node_modules/.bin/tsc"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "10.12.12",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "3.2.2"
}
}