tiime-cli 1.1.0 → 1.1.1

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 (1) hide show
  1. package/package.json +16 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tiime-cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "CLI & SDK for Tiime accounting",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -19,16 +19,6 @@
19
19
  "README.md",
20
20
  "LICENSE"
21
21
  ],
22
- "scripts": {
23
- "build": "tsup",
24
- "dev": "tsup --watch",
25
- "lint": "biome check src/",
26
- "format": "biome format --write src/",
27
- "test": "vitest run",
28
- "test:watch": "vitest",
29
- "prepublishOnly": "pnpm build",
30
- "release": "changeset publish"
31
- },
32
22
  "keywords": [
33
23
  "tiime",
34
24
  "accounting",
@@ -44,7 +34,11 @@
44
34
  "license": "MIT",
45
35
  "repository": {
46
36
  "type": "git",
47
- "url": "https://github.com/yabbal/tiime-cli.git"
37
+ "url": "git+https://github.com/yabbal/tiime-cli.git"
38
+ },
39
+ "publishConfig": {
40
+ "provenance": true,
41
+ "access": "public"
48
42
  },
49
43
  "homepage": "https://github.com/yabbal/tiime-cli#readme",
50
44
  "bugs": {
@@ -53,7 +47,6 @@
53
47
  "engines": {
54
48
  "node": ">=20"
55
49
  },
56
- "packageManager": "pnpm@10.30.2",
57
50
  "dependencies": {
58
51
  "@clack/prompts": "^1.1.0",
59
52
  "citty": "^0.2.1",
@@ -70,5 +63,14 @@
70
63
  "tsup": "^8.5.1",
71
64
  "typescript": "^5.9.3",
72
65
  "vitest": "^4.0.18"
66
+ },
67
+ "scripts": {
68
+ "build": "tsup",
69
+ "dev": "tsup --watch",
70
+ "lint": "biome check src/",
71
+ "format": "biome format --write src/",
72
+ "test": "vitest run",
73
+ "test:watch": "vitest",
74
+ "release": "changeset publish"
73
75
  }
74
- }
76
+ }