forked from withfig/push-to-fig-autocomplete-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "push-to-fig-autocomplete-action",
"version": "2.4.0",
"private": true,
"description": "Action to automatically open a new PR to the withfig/autocomplete repo",
"type": "module",
"main": "lib/main.js",
"packageManager": "[email protected]",
"scripts": {
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "tsc && rm -rf dist && mkdir dist && node esbuild.js",
"test": "vitest --run --passWithNoTests",
"all": "npm run format && npm run lint && npm run package && npm test",
"prepare": "husky install"
},
"engines": {
"node": ">= 20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withfig/push-to-fig-autocomplete-action.git"
},
"keywords": [
"fig",
"spec",
"autocomplete",
"actions",
"node",
"setup"
],
"author": "Grant Gurvis <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.1.7",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@fig/autocomplete-merge": "^1.4.0"
},
"devDependencies": {
"@types/eslint": "^8.56.5",
"@types/node": "^20.14.1",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "^0.21.4",
"eslint": "^8.57.0",
"eslint-plugin-github": "5.0.1",
"husky": "^9.0.11",
"js-yaml": "^4.1.0",
"prettier": "^3.3.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}