-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 902 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
{
"name": "ynab-githubactions",
"version": "1.0.0",
"description": "A GitHub Action which allows you to automate tasks within your YNAB account.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/SierraSoftworks/ynab-githubactions.git"
},
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"scripts": {
"build": "ncc build index.ts -o dist",
"watch": "ts-mocha --watch --watch-files '**/*.ts' '**/*.spec.ts'",
"test": "ts-mocha '**/*.spec.ts'"
},
"dependencies": {
"@actions/cache": "3.3.0",
"@actions/core": "^1.11.1",
"dayjs": "^1.11.13",
"ynab": "^2.6.0"
},
"devDependencies": {
"@types/expect": "^24.3.2",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@vercel/ncc": "^0.38.3",
"ts-mocha": "^10.0.0",
"typescript": "^5.7.2"
}
}