-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
40
41
42
43
44
45
46
47
{
"name": "ts-nodecg",
"version": "0.3.1",
"description": "Type your nodecg with bundle specific defintion",
"keywords": [
"nodecg",
"typescript"
],
"homepage": "https://github.com/hoishin/ts-nodecg",
"repository": "https://github.com/hoishin/ts-nodecg",
"license": "MIT",
"author": {
"name": "Keiichiro Amemiya",
"email": "[email protected]",
"url": "https://hoish.in"
},
"files": [
"helper",
"index.d.ts",
"browser.d.ts",
"server.d.ts"
],
"scripts": {
"fmt": "prettier \"**/*.{ts,json,md,yml,yaml}\" --write",
"test": "prettier \"**/*.{ts,json,md,yml,yaml}\" --check && tsd",
"release": "yarn test && standard-version"
},
"prettier": "@hoishin/prettierrc",
"dependencies": {
"@types/express": "4.17.3",
"@types/socket.io": "2.1.4",
"@types/socket.io-client": "1.4.32",
"@types/soundjs": "0.6.27"
},
"devDependencies": {
"@hoishin/prettierrc": "2.1.1",
"@hoishin/tsconfig": "2.0.0",
"prettier": "2.0.2",
"standard-version": "^8.0.0",
"tsd": "0.11.0",
"tslib": "2.0.3",
"typescript": "4.0.5"
},
"peerDependencies": {
"typescript": "*"
}
}