@mycelium-sdk/core 0.1.0 → 1.0.0-alpha.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@mycelium-sdk/core",
3
- "version": "0.1.0",
3
+ "version": "1.0.0-alpha.0",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -19,16 +19,6 @@
19
19
  "files": [
20
20
  "dist"
21
21
  ],
22
- "scripts": {
23
- "dev": "tsup src/index.ts --format esm,cjs --dts --sourcemap --watch --tsconfig tsconfig.build.json",
24
- "build": "tsup src/index.ts --format esm,cjs --dts --sourcemap --clean --tsconfig tsconfig.build.json",
25
- "watch": "tsup src/index.ts --format esm,cjs --dts --sourcemap --watch --tsconfig tsconfig.build.json",
26
- "test": "vitest run",
27
- "test:watch": "vitest",
28
- "docs:public": "typedoc --options typedoc.public.json",
29
- "docs:dev": "typedoc --options typedoc.dev.json",
30
- "docs": "pnpm docs:public && pnpm docs:dev"
31
- },
32
22
  "devDependencies": {
33
23
  "@types/bun": "latest",
34
24
  "i": "^0.3.7",
@@ -51,5 +41,15 @@
51
41
  "tsup": "^8.5.0",
52
42
  "viem": "^2.37.1",
53
43
  "vite-tsconfig-paths": "^5.1.4"
44
+ },
45
+ "scripts": {
46
+ "dev": "tsup src/index.ts --format esm,cjs --dts --sourcemap --watch --tsconfig tsconfig.build.json",
47
+ "build": "tsup src/index.ts --format esm,cjs --dts --sourcemap --clean --tsconfig tsconfig.build.json",
48
+ "watch": "tsup src/index.ts --format esm,cjs --dts --sourcemap --watch --tsconfig tsconfig.build.json",
49
+ "test": "vitest run",
50
+ "test:watch": "vitest",
51
+ "docs:public": "typedoc --options typedoc.public.json",
52
+ "docs:dev": "typedoc --options typedoc.dev.json",
53
+ "docs": "pnpm docs:public && pnpm docs:dev"
54
54
  }
55
- }
55
+ }