-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.02 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
65
66
67
68
69
70
71
72
73
{
"name": "strava",
"version": "4.0.0",
"description": "This library is a fully typed JavaScript wrapper of the Strava JSON API",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./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\"",
"test": "vitest run",
"test:watch": "vitest",
"generate": "curl -sL https://developers.strava.com/swagger/swagger.json -o openapi/swagger.json && swagger2openapi openapi/swagger.json -o openapi/strava.json --patch && node scripts/patch-openapi.mjs openapi/strava.json && openapi-ts",
"prepare": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@hey-api/openapi-ts": "^0.97.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^7.1.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",
"swagger2openapi": "^7.0.8",
"tsdown": "^0.22.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.6"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
}
}