Skip to content

Commit 3d63514

Browse files
committed
fix dependencies
1 parent 91e96bd commit 3d63514

File tree

3 files changed

+53
-72
lines changed

3 files changed

+53
-72
lines changed

package-lock.json

Lines changed: 46 additions & 67 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"require": "./dist/index.js"
1010
}
1111
},
12-
"types": "./dist/index.d.ts",
12+
"types": "dist/index.d.ts",
1313
"files": [
1414
"dist/*.mjs",
1515
"dist/*.js",
@@ -37,7 +37,6 @@
3737
"author": "Dev Protocol",
3838
"license": "MIT",
3939
"devDependencies": {
40-
"@aggre/ullr": "3.1.3",
4140
"@devprotocol/util-ts": "4.0.0",
4241
"@esm-bundle/chai": "4.3.4-fix.0",
4342
"@rollup/plugin-commonjs": "25.0.8",
@@ -64,7 +63,6 @@
6463
"ethers": "6.12.2",
6564
"glob": "10.4.1",
6665
"husky": "9.0.11",
67-
"lit": "2.8.0",
6866
"npm-run-all2": "6.2.0",
6967
"postcss": "8.4.38",
7068
"prettier": "3.3.0",
@@ -83,5 +81,9 @@
8381
"bugs": {
8482
"url": "https://github.com/dev-protocol/dev-elements/issues"
8583
},
86-
"homepage": "https://github.com/dev-protocol/dev-elements#readme"
84+
"homepage": "https://github.com/dev-protocol/dev-elements#readme",
85+
"dependencies": {
86+
"@aggre/ullr": "^3.1.4",
87+
"lit": "^2.8.0"
88+
}
8789
}

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ export default [
3434
'!dist/src/lib/test.d.ts',
3535
],
3636
output: [{ file: 'dist/index.d.ts', format: 'es' }],
37-
plugins: [multiEntry(), dts()],
37+
plugins: [resolve(), multiEntry(), dts()],
3838
},
3939
]

0 commit comments

Comments
 (0)