@enbox/dids 0.0.1 → 0.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.
Files changed (1) hide show
  1. package/package.json +18 -18
package/package.json CHANGED
@@ -1,24 +1,11 @@
1
1
  {
2
2
  "name": "@enbox/dids",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "TBD DIDs library",
5
5
  "type": "module",
6
6
  "main": "./dist/cjs/index.js",
7
7
  "module": "./dist/esm/index.js",
8
8
  "types": "./dist/types/index.d.ts",
9
- "scripts": {
10
- "clean": "rimraf dist coverage tests/compiled",
11
- "build:esm": "rimraf dist/esm dist/types && pnpm tsc -p tsconfig.json",
12
- "build:cjs": "rimraf dist/cjs && node build/cjs-bundle.js && echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
13
- "build:browser": "rimraf dist/browser.mjs dist/browser.js && node build/bundles.js",
14
- "build:tests:node": "rimraf tests/compiled && pnpm tsc -p tests/tsconfig.json",
15
- "build:tests:browser": "rimraf tests/compiled && node build/esbuild-tests.cjs",
16
- "build": "pnpm clean && pnpm build:esm && pnpm build:cjs && pnpm build:browser",
17
- "lint": "eslint . --max-warnings 0",
18
- "lint:fix": "eslint . --fix",
19
- "test:node": "pnpm build:tests:node && pnpm c8 mocha",
20
- "test:browser": "pnpm build:tests:browser && web-test-runner"
21
- },
22
9
  "homepage": "https://github.com/enboxorg/enbox/tree/main/packages/dids#readme",
23
10
  "bugs": "https://github.com/enboxorg/enbox/issues",
24
11
  "repository": {
@@ -77,13 +64,13 @@
77
64
  "dependencies": {
78
65
  "@decentralized-identity/ion-sdk": "1.0.4",
79
66
  "@dnsquery/dns-packet": "6.1.1",
80
- "@enbox/common": "workspace:*",
81
- "@enbox/crypto": "workspace:*",
82
67
  "abstract-level": "1.0.4",
83
68
  "bencode": "4.0.0",
84
69
  "buffer": "6.0.3",
85
70
  "level": "8.0.1",
86
- "ms": "2.1.3"
71
+ "ms": "2.1.3",
72
+ "@enbox/common": "0.0.2",
73
+ "@enbox/crypto": "0.0.2"
87
74
  },
88
75
  "devDependencies": {
89
76
  "@playwright/test": "1.45.3",
@@ -112,5 +99,18 @@
112
99
  "sinon": "18.0.0",
113
100
  "source-map-loader": "5.0.0",
114
101
  "typescript": "5.5.4"
102
+ },
103
+ "scripts": {
104
+ "clean": "rimraf dist coverage tests/compiled",
105
+ "build:esm": "rimraf dist/esm dist/types && pnpm tsc -p tsconfig.json",
106
+ "build:cjs": "rimraf dist/cjs && node build/cjs-bundle.js && echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
107
+ "build:browser": "rimraf dist/browser.mjs dist/browser.js && node build/bundles.js",
108
+ "build:tests:node": "rimraf tests/compiled && pnpm tsc -p tests/tsconfig.json",
109
+ "build:tests:browser": "rimraf tests/compiled && node build/esbuild-tests.cjs",
110
+ "build": "pnpm clean && pnpm build:esm && pnpm build:cjs && pnpm build:browser",
111
+ "lint": "eslint . --max-warnings 0",
112
+ "lint:fix": "eslint . --fix",
113
+ "test:node": "pnpm build:tests:node && pnpm c8 mocha",
114
+ "test:browser": "pnpm build:tests:browser && web-test-runner"
115
115
  }
116
- }
116
+ }