@bloque/sdk-core 0.0.1
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/dist/index.cjs +5 -0
- package/dist/index.d.ts +0 -0
- package/dist/index.js +0 -0
- package/package.json +51 -0
package/dist/index.cjs
ADDED
package/dist/index.d.ts
ADDED
|
File without changes
|
package/dist/index.js
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bloque/sdk-core",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Core utilities and types for Bloque SDK.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"bloque",
|
|
8
|
+
"sdk",
|
|
9
|
+
"core",
|
|
10
|
+
"utilities"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public",
|
|
15
|
+
"provenance": true
|
|
16
|
+
},
|
|
17
|
+
"homepage": "git+https://github.com/bloque-app/sdk.git#readme",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/bloque-app/sdk.git",
|
|
21
|
+
"directory": "packages/sdk-core"
|
|
22
|
+
},
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"import": "./dist/index.js",
|
|
27
|
+
"require": "./dist/index.cjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"main": "./dist/index.cjs",
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=22"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "rslib build",
|
|
40
|
+
"dev": "rslib build --watch",
|
|
41
|
+
"clean": "rm -rf node_modules && rm -rf dist",
|
|
42
|
+
"check": "biome check --write",
|
|
43
|
+
"typecheck": "tsgo --noEmit"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@rslib/core": "catalog:",
|
|
47
|
+
"@types/node": "catalog:",
|
|
48
|
+
"@typescript/native-preview": "catalog:",
|
|
49
|
+
"typescript": "catalog:"
|
|
50
|
+
}
|
|
51
|
+
}
|