-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 KB
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
{
"name": "setup-conftest",
"version": "0.0.0",
"private": true,
"description": "TypeScript template action",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc --noEmit",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"all": "npm run build && npm run format && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/princespaghetti/setup-conftest.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "princespaghetti",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.0",
"@actions/tool-cache": "^4.0.0",
"semver": "^7.7.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.6.0",
"@types/semver": "^7.7.1",
"eslint": "^10.2.0",
"prettier": "3.8.0",
"rollup": "^4.60.0",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.59.0"
}
}