Skip to content

Commit

Permalink
fix actions dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tchak committed Apr 26, 2024
1 parent ac04f42 commit 49b44b1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 22 deletions.
28 changes: 9 additions & 19 deletions packages/actions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"name": "@coldwired/actions",
"description": "DOM manipulation actions based on morphdom",
"license": "MIT",
"files": [
"dist"
],
"files": ["dist"],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
Expand All @@ -16,9 +14,7 @@
},
"type": "module",
"version": "0.12.0",
"keywords": [
"turbo"
],
"keywords": ["turbo"],
"scripts": {
"build": "run-s clean build:*",
"build:vite": "vite build",
Expand All @@ -35,7 +31,6 @@
"clean": "del dist coverage node_modules/.vite"
},
"dependencies": {
"@coldwired/react": "*",
"@coldwired/utils": "^0.12.0",
"morphdom": "^2.7.2"
},
Expand All @@ -50,24 +45,15 @@
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-redeclare": "off"
},
"overrides": [
{
"files": [
"vite.config.js",
"vitest.config.ts"
],
"files": ["vite.config.js", "vitest.config.ts"],
"env": {
"node": true
}
Expand All @@ -86,7 +72,11 @@
"release": true
}
},
"peerDependencies": {
"@coldwired/react": "^0.12.1"
},
"devDependencies": {
"@coldwired/react": "^0.12.1",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"react": "^18.0.0",
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 49b44b1

Please sign in to comment.