@thirdweb-dev/nebula 0.2.6-nightly-f1a965b0465f95864cb46c553a95323555c1b5c6-20250704000423 → 0.2.6

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.
Files changed (1) hide show
  1. package/package.json +28 -28
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
- "name": "@thirdweb-dev/nebula",
3
- "version": "0.2.6-nightly-f1a965b0465f95864cb46c553a95323555c1b5c6-20250704000423",
4
- "repository": {
5
- "type": "git",
6
- "url": "git+https://github.com/thirdweb-dev/js.git#main"
7
- },
8
- "license": "Apache-2.0",
2
+ "author": "thirdweb eng <eng@thirdweb.com>",
9
3
  "bugs": {
10
4
  "url": "https://github.com/thirdweb-dev/js/issues"
11
5
  },
12
- "author": "thirdweb eng <eng@thirdweb.com>",
13
- "type": "module",
14
- "main": "./dist/cjs/exports/thirdweb.js",
15
- "module": "./dist/esm/exports/thirdweb.js",
16
- "types": "./dist/types/exports/thirdweb.d.ts",
17
- "typings": "./dist/types/exports/thirdweb.d.ts",
6
+ "dependencies": {
7
+ "thirdweb": "5.105.6"
8
+ },
9
+ "devDependencies": {
10
+ "@biomejs/biome": "2.0.6",
11
+ "@hey-api/openapi-ts": "0.76.0",
12
+ "rimraf": "6.0.1",
13
+ "tslib": "^2.8.1"
14
+ },
15
+ "engines": {
16
+ "node": ">=18"
17
+ },
18
18
  "exports": {
19
19
  ".": {
20
20
  "types": "./dist/types/exports/thirdweb.d.ts",
@@ -27,15 +27,10 @@
27
27
  "dist/*",
28
28
  "src/*"
29
29
  ],
30
- "dependencies": {
31
- "thirdweb": "5.105.6-nightly-f1a965b0465f95864cb46c553a95323555c1b5c6-20250704000423"
32
- },
33
- "devDependencies": {
34
- "@biomejs/biome": "2.0.4",
35
- "@hey-api/openapi-ts": "0.76.0",
36
- "rimraf": "6.0.1",
37
- "tslib": "^2.8.1"
38
- },
30
+ "license": "Apache-2.0",
31
+ "main": "./dist/cjs/exports/thirdweb.js",
32
+ "module": "./dist/esm/exports/thirdweb.js",
33
+ "name": "@thirdweb-dev/nebula",
39
34
  "peerDependencies": {
40
35
  "typescript": ">=5.0.4"
41
36
  },
@@ -44,18 +39,23 @@
44
39
  "optional": true
45
40
  }
46
41
  },
47
- "engines": {
48
- "node": ">=18"
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/thirdweb-dev/js.git#main"
49
45
  },
46
+ "type": "module",
47
+ "types": "./dist/types/exports/thirdweb.d.ts",
48
+ "typings": "./dist/types/exports/thirdweb.d.ts",
49
+ "version": "0.2.6",
50
50
  "scripts": {
51
- "format": "biome format ./src --write",
52
- "lint": "biome check ./src",
53
- "fix": "biome check ./src --fix",
54
51
  "build": "pnpm clean && pnpm build:cjs && pnpm build:esm && pnpm build:types",
55
52
  "build:cjs": "tsc --project ./tsconfig.build.json --module commonjs --outDir ./dist/cjs --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json",
56
53
  "build:esm": "tsc --project ./tsconfig.build.json --module es2020 --outDir ./dist/esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./dist/esm/package.json",
54
+ "build:generate": "openapi-ts && pnpm format",
57
55
  "build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
58
56
  "clean": "rimraf dist",
59
- "build:generate": "openapi-ts && pnpm format"
57
+ "fix": "biome check ./src --fix",
58
+ "format": "biome format ./src --write",
59
+ "lint": "biome check ./src"
60
60
  }
61
61
  }