-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 KB
/
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": "@viacast/playcast-client",
"version": "0.1.4",
"description": "Playcast Middleware API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "Gabriel Jablonski",
"repository": {
"type": "git",
"url": "git+https://github.com/gabrieljablonski/playcast-client.git"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rm -r dist/ ; tsc -p tsconfig.json"
},
"dependencies": {
"socket.io-client": "^4.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}