-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
60
61
62
{
"name": "@bitwarden/sm-action",
"version": "0.1.0",
"private": true,
"description": "The Bitwarden Secrets Manager GitHub Action",
"keywords": [
"actions",
"node",
"setup"
],
"homepage": "https://github.com/bitwarden/sm-action#readme",
"bugs": {
"url": "https://github.com/bitwarden/sm-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitwarden/sm-action.git"
},
"license": "GPL-3.0",
"author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"all": "npm run prettier && npm run lint && npm test && npm run dist",
"bundle": "npm run prettier && npm run lint && npm run dist",
"lint": "eslint src/**/*.ts && prettier --check '**/*.ts'",
"lint:fix": "eslint src/**/*.ts --fix",
"dist": "pwsh ./pack.ps1 && ncc build src/index.ts --license licenses.txt --external @bitwarden/sdk-napi",
"prepare": "husky",
"prettier": "prettier --write .",
"test": "jest"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.ts": "eslint --cache --cache-strategy content --fix"
},
"dependencies": {
"@actions/core": "1.10.1",
"@bitwarden/sdk-napi": "0.3.1"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.14.14",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.7.0",
"husky": "9.1.4",
"jest": "29.7.0",
"js-yaml": "4.1.0",
"lint-staged": "15.2.8",
"prettier": "3.3.3",
"ts-jest": "29.1.5",
"typescript": "5.5.3"
}
}