-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.49 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
{
"name": "@muravjev/get-tag-version-action",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"keywords": [
"muravjev",
"pnpm",
"github",
"action",
"git",
"version"
],
"description": "Gets a version from the current branch",
"author": "Sergey Muravjev <sergey.muravjev@gmail.com> (http://github.com/muravjev)",
"license": "MIT",
"repository": "https://github.com/muravjev/get-version-action",
"homepage": "https://github.com/muravjev/get-version-action#readme",
"bugs": "https://github.com/muravjev/get-version-action/issues",
"scripts": {
"clean": "rimraf node_modules dist",
"fresh": "pnpm clean && pnpm i",
"nuke": "rimraf pnpm-lock.yaml && pnpm fresh",
"build": "ncc build --minify ./src/main.ts",
"test": "jest",
"format": "prettier",
"format:check": "pnpm format --check --debug-check",
"format:fix": "pnpm format --write",
"lint": "eslint --ext js,mjs,cjs,ts",
"lint:fix": "pnpm lint --fix",
"remark": "remark",
"remark:fix": "pnpm remark --output --",
"commitlint": "commitlint",
"syncpack:fix": "syncpack format && syncpack fix-mismatches",
"fix": "pnpm lint:fix . && pnpm remark:fix . & pnpm format:fix . && pnpm syncpack:fix",
"repos:archive": "ts-node scripts/archive",
"repos:restore": "ts-node scripts/restore",
"prepare": "husky install && pnpm repos:restore"
},
"type": "module",
"main": "dist/main.ts",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^17.2.0",
"@muravjev/configs-commitlint": "^0.2.1",
"@muravjev/configs-eslint-ts": "^0.1.5",
"@muravjev/configs-jest-ts": "^0.1.8",
"@muravjev/configs-prettier": "^0.1.4",
"@muravjev/configs-remark": "^0.1.4",
"@muravjev/configs-syncpack": "^0.1.4",
"@muravjev/configs-ts": "^0.1.2",
"@types/adm-zip": "^0.5.0",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"@vercel/ncc": "^0.34.0",
"adm-zip": "^0.5.9",
"eslint": "^8.26.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"remark": "^14.0.2",
"remark-cli": "^11.0.0",
"syncpack": "^8.3.9",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14.16.0",
"pnpm": ">=7.10.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"packageManager": "pnpm@7.10.0"
}