@examind/block-sdk 0.1.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 ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@examind/block-sdk",
3
+ "version": "0.1.0",
4
+ "@comment version": [
5
+ "Don't specify package version here. It will be injected by publish workflow."
6
+ ],
7
+ "description": "",
8
+ "main": "dist/index.js",
9
+ "module": "dist/index.mjs",
10
+ "types": "dist/index.d.ts",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "@comment scripts": [
15
+ "tsup uses esbuild which doesn't automatically read tsconfig.json path aliases.",
16
+ "We add --tsconfig flag to enable path aliases like @/* in our source code."
17
+ ],
18
+ "keywords": [],
19
+ "author": "",
20
+ "license": "ISC",
21
+ "devDependencies": {
22
+ "@eslint/js": "^9.17.0",
23
+ "@types/jest": "^29.5.14",
24
+ "@types/lodash-es": "4.17.12",
25
+ "eslint": "^9.17.0",
26
+ "globals": "^15.14.0",
27
+ "jest": "^29.7.0",
28
+ "ts-jest": "^29.3.4",
29
+ "tsup": "^8.3.5",
30
+ "typescript": "^5.7.2",
31
+ "typescript-eslint": "^8.18.2",
32
+ "@examind/block-types": "1.0.0"
33
+ },
34
+ "dependencies": {
35
+ "lodash-es": "4.17.21",
36
+ "nanoid": "5.0.9",
37
+ "node-html-parser": "7.0.1"
38
+ },
39
+ "scripts": {
40
+ "build": "pnpm type-check && tsup src/index.ts --format cjs,esm --dts --tsconfig tsconfig.json",
41
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch --tsconfig tsconfig.json",
42
+ "type-check": "tsc --noEmit",
43
+ "lint": "eslint src/**/*.ts*",
44
+ "test": "jest",
45
+ "test:watch": "jest --watch"
46
+ }
47
+ }