-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
{
"name": "ynab",
"version": "4.0.0",
"description": "Official JavaScript client for the YNAB API. API documentation available at https://api.ynab.com. Generated from server specification version 1.83.0",
"author": "YNAB",
"email": "api@ynab.com",
"url": "https://api.ynab.com",
"keywords": [
"typescript",
"open-api",
"ynab",
"api"
],
"files": [
"dist/",
"dist/esm",
"dist/browser"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ynab/ynab-sdk-js.git"
},
"engines": {
"node": ">=14"
},
"scripts": {
"generate": "./scripts/generate.mjs",
"build": "tsc -b src/ test/ examples/ && tsc -b src/tsconfig.esm.json && webpack --mode production",
"test": "npx mocha"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/fetch-mock": "^7.3.2",
"@types/mocha": "^8.0.2",
"@types/node": "^22.19.11",
"chai": "^4.2.0",
"fetch-mock": "^9.10.6",
"js-yaml": "^4.1.0",
"jsh": "0.55.0",
"mocha": "^10.8.2",
"ts-loader": "^8.0.2",
"tsx": "4.21.0",
"typescript": "^5.9.3",
"url": "^0.11.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"fetch-ponyfill": "^7.1.0"
}
}