@lssm/module.lifecycle-core 0.1.2 → 0.3.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 (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +10 -7
package/README.md CHANGED
@@ -46,3 +46,14 @@ Adapters are interfaces—you can implement them inside bundles, Studio services
46
46
 
47
47
 
48
48
 
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/module.lifecycle-core",
3
- "version": "0.1.2",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -11,6 +11,7 @@
11
11
  "src/data"
12
12
  ],
13
13
  "scripts": {
14
+ "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
14
15
  "build": "bun build:bundle && bun build:types",
15
16
  "build:bundle": "tsdown",
16
17
  "build:types": "tsc --noEmit",
@@ -19,20 +20,22 @@
19
20
  "lint": "bun lint:fix",
20
21
  "lint:fix": "eslint src --fix",
21
22
  "lint:check": "eslint src",
22
- "test": "vitest run"
23
+ "test": "bun run"
23
24
  },
24
25
  "dependencies": {
25
- "@lssm/lib.lifecycle": "*"
26
+ "@lssm/lib.lifecycle": "0.3.0"
26
27
  },
27
28
  "devDependencies": {
28
- "@lssm/tool.tsdown": "*",
29
- "@lssm/tool.typescript": "*",
29
+ "@lssm/tool.tsdown": "0.12.0",
30
+ "@lssm/tool.typescript": "0.11.0",
30
31
  "tsdown": "^0.16.6",
31
- "typescript": "^5.9.3",
32
- "vitest": "^1.6.0"
32
+ "typescript": "^5.9.3"
33
33
  },
34
34
  "exports": {
35
35
  ".": "./dist/index.js",
36
36
  "./*": "./*"
37
+ },
38
+ "publishConfig": {
39
+ "access": "public"
37
40
  }
38
41
  }