-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "action-cassette-deck",
"version": "2.1.0",
"private": true,
"packageManager": "pnpm@9.15.0",
"description": "Action to manage the synchronization between the vcr cassette repo and main rotki repo workflows",
"keywords": [
"actions",
"vcr",
"cassette"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rotki/action-cassette-deck.git"
},
"author": "Rotki Solutions GmbH <info@rotki.com>",
"main": "lib/main.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"package": "ncc build --source-map --license licenses.txt",
"test": "vitest run",
"test:watch": "vitest watch",
"all": "pnpm run build && pnpm run lint && pnpm run package && pnpm test",
"release": "bumpp --no-push",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@octokit/webhooks-types": "7.6.1"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@rotki/eslint-config": "3.6.0",
"@tsconfig/node20": "20.1.4",
"@types/node": "20.17.10",
"@vercel/ncc": "0.38.3",
"bumpp": "9.9.1",
"eslint": "9.16.0",
"eslint-plugin-github": "5.1.4",
"husky": "9.1.7",
"js-yaml": "4.1.0",
"lint-staged": "15.2.11",
"nock": "13.5.6",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"engines": {
"node": ">=20 <21",
"pnpm": ">=9 <10"
},
"lint-staged": {
"*.{js,ts,vue,yml,json}": "eslint"
}
}