@cetusprotocol/burn-sdk 1.0.1 → 1.0.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cetusprotocol/burn-sdk",
3
- "version": "1.0.1",
4
- "description": "SDK for cetus dca",
3
+ "version": "1.0.2",
4
+ "description": "SDK for cetus burn",
5
5
  "typings": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.mjs",
@@ -0,0 +1,26 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "module": "commonjs",
5
+ "allowJs": false,
6
+ "declaration": true,
7
+ "lib": [
8
+ "DOM",
9
+ "ES6",
10
+ "DOM.Iterable",
11
+ "ScriptHost",
12
+ "ES2016.Array.Include"
13
+ ],
14
+ "outDir": "./dist",
15
+ "strict": true,
16
+ "esModuleInterop": true,
17
+ "skipLibCheck": true,
18
+ "forceConsistentCasingInFileNames": true,
19
+ "resolveJsonModule": true,
20
+ "experimentalDecorators": true
21
+ },
22
+ "filesGlob": [
23
+ "src/**/*",
24
+ "tests/**/*"
25
+ ]
26
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "include": ["src/**/*"],
4
+ "exclude": ["node_modules", "dist"]
5
+ }
package/tsup.config.ts ADDED
@@ -0,0 +1,9 @@
1
+ import { defineConfig } from 'tsup'
2
+
3
+ export default defineConfig({
4
+ entry: ['src/index.ts'],
5
+ splitting: false,
6
+ sourcemap: true,
7
+ minify: true,
8
+ target: 'esnext',
9
+ })