clockwork-press 0.0.1 → 0.2.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.
package/package.json CHANGED
@@ -1,9 +1,44 @@
1
1
  {
2
2
  "name": "clockwork-press",
3
- "version": "0.0.1",
4
- "description": "your fees, on a clock, with receipts. the fee machine for tokens on robinhood chain. name reserved; the first release ships with client zero.",
3
+ "version": "0.2.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "description": "your fees, on a clock, with receipts. the fee machine for tokens on robinhood chain.",
5
7
  "license": "SEE LICENSE IN LICENSE",
6
- "repository": "github:MithrilDaniel/clockwork",
7
- "publishConfig": { "access": "public" },
8
- "files": ["README.md", "LICENSE"]
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/MithrilDaniel/clockwork.git"
11
+ },
12
+ "bin": {
13
+ "clockwork": "bin/clockwork.mjs"
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "bin",
18
+ "README.md",
19
+ "LICENSE",
20
+ "npm-shrinkwrap.json"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "engines": {
26
+ "node": ">=20"
27
+ },
28
+ "scripts": {
29
+ "press": "tsx src/index.ts press",
30
+ "dry": "tsx src/index.ts dry",
31
+ "doctor": "tsx src/index.ts doctor",
32
+ "typecheck": "tsc --noEmit",
33
+ "build": "tsc -p tsconfig.build.json && cp ../../LICENSE ../../README.md .",
34
+ "prepublishOnly": "npm run typecheck && npm run build"
35
+ },
36
+ "dependencies": {
37
+ "viem": "2.56.3"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "^26.4.0",
41
+ "tsx": "^4.19.0",
42
+ "typescript": "^5.6.0"
43
+ }
9
44
  }