-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.55 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "strava",
"version": "3.1.0",
"description": "This library is a fully typed JavaScript wrapper of the Strava JSON API",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/rfoel/strava.git"
},
"keywords": [
"strava",
"api",
"client",
"node"
],
"author": "Rafael Franco <rafaelfr@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rfoel/strava/issues"
},
"homepage": "https://github.com/rfoel/strava#readme",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build"
},
"dependencies": {
"form-data": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"tsdown": "^0.15.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
}
}