owostack 0.1.0 → 0.1.2
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/README.md +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -76,7 +76,7 @@ await owo.track({
|
|
|
76
76
|
|
|
77
77
|
## Related Packages
|
|
78
78
|
|
|
79
|
-
- [
|
|
79
|
+
- [owosk](https://www.npmjs.com/package/owosk) - CLI for catalog sync and project initialization.
|
|
80
80
|
- [@owostack/types](https://www.npmjs.com/package/@owostack/types) - Shared type definitions.
|
|
81
81
|
|
|
82
82
|
## Documentation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "owostack",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Core SDK for Owostack billing infrastructure",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -21,12 +21,6 @@
|
|
|
21
21
|
"import": "./dist/index.js"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
26
|
-
"dev": "tsup src/index.ts --format esm --dts --watch",
|
|
27
|
-
"test": "vitest",
|
|
28
|
-
"lint": "eslint src/"
|
|
29
|
-
},
|
|
30
24
|
"keywords": [
|
|
31
25
|
"billing",
|
|
32
26
|
"saas",
|
|
@@ -36,7 +30,7 @@
|
|
|
36
30
|
"payments"
|
|
37
31
|
],
|
|
38
32
|
"dependencies": {
|
|
39
|
-
"@owostack/types": "
|
|
33
|
+
"@owostack/types": "0.1.2"
|
|
40
34
|
},
|
|
41
35
|
"devDependencies": {
|
|
42
36
|
"tsup": "^8.3.6",
|
|
@@ -45,5 +39,11 @@
|
|
|
45
39
|
},
|
|
46
40
|
"publishConfig": {
|
|
47
41
|
"access": "public"
|
|
42
|
+
},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
45
|
+
"dev": "tsup src/index.ts --format esm --dts --watch",
|
|
46
|
+
"test": "vitest",
|
|
47
|
+
"lint": "eslint src/"
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
}
|