-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.24 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.24 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
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@nanoforge-dev/actions",
"version": "1.2.3",
"description": "NanoForge Actions",
"keywords": [
"nanoforge",
"game",
"actions"
],
"homepage": "https://github.com/NanoForge-dev/actions#readme",
"bugs": "https://github.com/NanoForge-dev/actions/issues",
"license": "MIT",
"contributors": [
"Bill <timothe.jacquot@epitech.eu>",
"Exelo <exelo.corp@gmail.com>",
"Fexkoser <martin.fillon@epitech.eu>",
"Tchips <leo.outmizguine@epitech.eu>"
],
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json"
},
"type": "module",
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NanoForge-dev/actions.git"
},
"funding": "https://github.com/NanoForge-dev/actions?sponsor",
"scripts": {
"build": "tsc --noEmit && tsup",
"lint": "prettier --check . && eslint --format=pretty src",
"format": "prettier --write . && eslint --fix --format=pretty src",
"prepack": "pnpm run build && pnpm run lint",
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path '*'",
"release": "cliff-jumper",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "catalog:actions",
"@actions/github": "catalog:actions",
"commander": "catalog:core"
},
"devDependencies": {
"@commitlint/cli": "catalog:ci",
"@commitlint/config-conventional": "catalog:ci",
"@favware/cliff-jumper": "catalog:ci",
"@nanoforge-dev/utils-eslint-config": "catalog:lint",
"@nanoforge-dev/utils-prettier-config": "catalog:lint",
"@npm/types": "catalog:core",
"@trivago/prettier-plugin-sort-imports": "catalog:lint",
"@types/bun": "catalog:core",
"eslint": "catalog:lint",
"husky": "catalog:ci",
"lint-staged": "catalog:ci",
"prettier": "catalog:lint",
"terser": "catalog:build",
"tsup": "catalog:build",
"typescript": "catalog:build"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"node": "25"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"**": [
"prettier --ignore-unknown --write"
],
"src/**/*.ts": [
"eslint --fix"
]
}
}