@emmertarmin/redmine-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +49 -0
  3. package/dist/index.js +1920 -0
  4. package/package.json +36 -0
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@emmertarmin/redmine-cli",
3
+ "version": "0.1.0",
4
+ "description": "A personal Redmine CLI.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/emmertarmin/redmine-cli.git"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "type": "module",
14
+ "bin": {
15
+ "redmine": "dist/index.js"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "LICENSE"
21
+ ],
22
+ "engines": {
23
+ "bun": ">=1.0.0"
24
+ },
25
+ "scripts": {
26
+ "dev": "bun --watch run index.ts",
27
+ "build": "bun build ./index.ts --outdir dist --target bun",
28
+ "tsc": "tsc --noEmit",
29
+ "prepublishOnly": "bun run build"
30
+ },
31
+ "devDependencies": {
32
+ "@types/bun": "latest",
33
+ "@types/node": "^22.15.21",
34
+ "typescript": "^5.8.3"
35
+ }
36
+ }