@stacksjs/registry 0.70.23 → 0.70.25
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/dist/index.js +1 -1
- package/dist/src/index.d.ts +4 -0
- package/package.json +14 -5
- package/dist/index.d.ts +0 -15
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ import { registry } from '@stacksjs/registry'
|
|
|
19
19
|
console.log(registry) // the Registry as an object
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
To view the full documentation, please visit [https://stacksjs.
|
|
22
|
+
To view the full documentation, please visit [<https://stacksjs.com/pat>h](https://stacksjs.com/path).
|
|
23
23
|
|
|
24
24
|
## 🧪 Testing
|
|
25
25
|
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// @bun
|
|
2
|
-
var
|
|
2
|
+
var t=[{name:"stacks",url:"stacksjs.com",github:"stacksjs/stacks"}],e=t;export{t as registry,e as default};
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/registry",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.70.
|
|
4
|
+
"version": "0.70.25",
|
|
5
5
|
"description": "The Stacks Registry.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
|
-
"contributors": [
|
|
7
|
+
"contributors": [
|
|
8
|
+
"Chris Breuer <chris@stacksjs.com>"
|
|
9
|
+
],
|
|
8
10
|
"license": "MIT",
|
|
9
11
|
"funding": "https://github.com/sponsors/chrisbbreuer",
|
|
10
12
|
"homepage": "https://github.com/stacksjs/stacks/tree/main/registry/framework/core/registry#readme",
|
|
@@ -16,21 +18,28 @@
|
|
|
16
18
|
"bugs": {
|
|
17
19
|
"url": "https://github.com/stacksjs/stacks/issues"
|
|
18
20
|
},
|
|
19
|
-
"keywords": [
|
|
21
|
+
"keywords": [
|
|
22
|
+
"registry",
|
|
23
|
+
"stacks"
|
|
24
|
+
],
|
|
20
25
|
"exports": {
|
|
21
26
|
".": {
|
|
27
|
+
"bun": "./src/index.ts",
|
|
22
28
|
"import": "./dist/index.js"
|
|
23
29
|
}
|
|
24
30
|
},
|
|
25
31
|
"module": "dist/index.js",
|
|
26
32
|
"types": "dist/index.d.ts",
|
|
27
|
-
"files": [
|
|
33
|
+
"files": [
|
|
34
|
+
"README.md",
|
|
35
|
+
"dist"
|
|
36
|
+
],
|
|
28
37
|
"scripts": {
|
|
29
38
|
"build": "bun build.ts",
|
|
30
39
|
"typecheck": "bun tsc --noEmit",
|
|
31
40
|
"prepublishOnly": "bun run build"
|
|
32
41
|
},
|
|
33
42
|
"devDependencies": {
|
|
34
|
-
"
|
|
43
|
+
"better-dx": "^0.2.12"
|
|
35
44
|
}
|
|
36
45
|
}
|
package/dist/index.d.ts
DELETED