-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.77 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
{
"name": "speckle-automate-github-action",
"author": "Speckle Systems",
"version": "0.0.0",
"description": "Speckle Automate Github Action",
"packageManager": "[email protected]",
"license": "Apache-2.0",
"main": "lib/main.js",
"type": "module",
"scripts": {
"all": "yarn run build && yarn run prettier:check && yarn run lint && yarn run package",
"build": "tsc -p tsconfig.json",
"build:image": "docker build -t speckle/speckle-automate-github-action:local .",
"lint": "eslint src/**/*.ts",
"package": "ncc build --target es2020 --source-map --license licenses.txt -o dist/action src/main.ts",
"precommit": "pre-commit run --all-files",
"prettier:check": "prettier --check '**/*.ts'",
"prettier:fix": "prettier --write '**/*.ts'",
"test": "vitest --run --coverage",
"test:watch": "vitest"
},
"engines": {
"node": "^16.19.1"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@lifeomic/attempt": "^3.0.3",
"node-fetch": "^3.3.2",
"zod": "^3.22.3"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^18.19.17",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.9.0",
"@vercel/ncc": "^0.38.1",
"@vitest/coverage-istanbul": "^1.6.0",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "latest",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vitest": "^0.3.22",
"msw": "^2.3.0",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vite": "^5.1.8",
"vitest": "^1.6.0"
}
}