finish setting up dev dependencies properly

This commit is contained in:
Erin 2023-08-14 14:37:55 -04:00
parent e1a4f59516
commit 41a3ad8f6a
3 changed files with 15 additions and 4 deletions

View file

@ -4,6 +4,8 @@
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"fmt": "dprint fmt"
},
"devDependencies": {
@ -12,6 +14,8 @@
"@types/chrome": "^0.0.242",
"@types/node": "^20.5.0",
"dprint": "^0.40.2",
"rollup": "^3.26.3"
"rollup": "^3.26.3",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
}
}