-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 937 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 937 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
37
38
39
40
41
{
"name": "@prism117/trybe_sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/Prism117/trybe_node_sdk.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"version": "1.4.2",
"description": "Try.be API SDK",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "npx tsc",
"local": "node --env-file=.env ./dist/local/index.js"
},
"author": "Clay Patten",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
},
"files": [
"dist",
"src",
"!src/local",
"!dist/local"
],
"dependencies": {
"axios": "^1.7.7",
"date-fns": "^4.1.0"
}
}