-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 865 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 865 Bytes
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
{
"name": "@anime-skip/usage-stats-client",
"version": "1.4.4",
"description": "API client to report usage stats",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/anime-skip/usage-stats-client-ts",
"author": "Aaron Klinker <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"compile": "tsc --noEmit",
"build": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/uuid": "^8.3.1",
"axios": "^0.23.0",
"husky": "^7.0.2",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"axios": ">=0.23"
}
}