forked from actions-rs/core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 3.13 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"private": false,
"name": "@actions-rs-plus/core",
"version": "0.0.0",
"author": "actions-rs-plus",
"license": "MIT",
"description": "Core functionality for the @actions-rs-plus repos",
"type": "module",
"main": "dist/core.js",
"types": "dist/core.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"clean": "rm -rf ./dist/* && rm tsconfig.tsbuildinfo && npm run build",
"test": "vitest --coverage.enabled=true",
"deps:ci": "depcruise --config dependency-cruiser.config.mjs --output-type err src",
"deps:graph": "depcruise --config dependency-cruiser.config.mjs --output-type dot src | dot -T svg > dependency-graph.svg",
"deps:report": "depcruise --config dependency-cruiser.config.mjs --output-type err-html --output-to dependency-report.html src",
"postversion": "cp package.json package-lock.json ..",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-rs-plus/core.git"
},
"bugs": {
"url": "https://github.com/actions-rs-plus/core/issues"
},
"devDependencies": {
"@codecov/vite-plugin": "1.9.0",
"@eslint/js": "9.20.0",
"@stylistic/eslint-plugin-ts": "3.1.0",
"@types/eslint": "9.6.1",
"@types/node": "20.17.19",
"@types/semver": "7.5.8",
"@vitest/coverage-v8": "3.0.5",
"@vitest/ui": "3.0.5",
"conventional-changelog-conventionalcommits": "8.0.0",
"dependency-cruiser": "16.9.0",
"eslint": "9.20.1",
"eslint-config-love": "118.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "3.8.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-perfectionist": "4.9.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "56.0.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.5.1",
"semantic-release": "24.2.2",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0",
"vite": "6.1.0",
"vite-plugin-checker": "0.8.0",
"vite-plugin-dts": "4.5.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run test:lint:fix",
"depcruise --validate -- "
]
},
"dependencies": {
"@actions/cache": "^4.0.1",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.3",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
"semver": "^7.7.1"
},
"overrides": {}
}