-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1018 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
40
41
42
43
44
{
"name": "wakatimejs",
"version": "2.0.0",
"license": "MIT",
"description": "Type safe JavaScript client for the WakaTime REST API",
"main": "dist/node/index.js",
"types": "dist/node/index.d.ts",
"browser": "dist/browser/bundle.js",
"keywords": [
"wakatime",
"api",
"client",
"javascript",
"typescript"
],
"scripts": {
"bundle": "node ./bundle.js",
"watch": "node ./bundle.js -watch",
"format": "prettier --write .",
"lint": "eslint src --ext ts",
"test": "jest",
"prepublish": "npm run bundle"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"esbuild": "^0.19.5",
"esbuild-plugin-d.ts": "^1.1.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"estrella": "^1.4.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.5.1",
"dotenv": "^16.3.1"
}
}