diff --git a/packages/css-hooks-react/package.json b/packages/css-hooks-react/package.json deleted file mode 100644 index 82caf1e..0000000 --- a/packages/css-hooks-react/package.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "name": "@css-hooks/react", - "description": "CSS Hooks for React", - "version": "0.0.6", - "author": "Nick Saunders", - "dependencies": { - "@css-hooks/core": "^0.0.6" - }, - "devDependencies": { - "@tsconfig/strictest": "^2.0.1", - "@types/react": "^18.2.20", - "@typescript-eslint/eslint-plugin": "^6.7.2", - "@typescript-eslint/parser": "^6.7.2", - "eslint": "^8.50.0", - "rimraf": "^5.0.1", - "ts-watch": "^1.0.8", - "typescript": "^5.1.6" - }, - "files": [ - "cjs", - "esm", - "types" - ], - "license": "MIT", - "main": "cjs", - "module": "esm", - "type": "module", - "peerDependencies": { - "@types/react": ">=16 <19" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - }, - "private": false, - "repository": { - "type": "git", - "url": "https://github.com/css-hooks/css-hooks.git", - "directory": "packages/react" - }, - "scripts": { - "clean": "rimraf cjs esm out types", - "lint": "eslint src .*.*js *.*js", - "postversion": "npm install @css-hooks/core@^$npm_package_version --force", - "prepublishOnly": "tsc -p tsconfig.dist.json --outDir cjs --module commonjs && tsc -p tsconfig.dist.json --outDir esm --module es6 && tsc -p tsconfig.dist.json --declaration --emitDeclarationOnly --outDir types", - "test": "echo 0", - "test.watch": "tsc-watch --onSuccess 'node --test'" - }, - "types": "types", - "exports": { - ".": { - "import": "./esm/index.js", - "require": "./cjs/index.js", - "types": "./types/index.d.ts" - } - } -} diff --git a/packages/css-hooks/package.json b/packages/css-hooks/package.json deleted file mode 100644 index 6ebc4c8..0000000 --- a/packages/css-hooks/package.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "name": "@css-hooks/core", - "description": "CSS Hooks core library", - "version": "0.0.6", - "author": "Nick Saunders", - "devDependencies": { - "@tsconfig/strictest": "^2.0.1", - "@types/css-tree": "^2.3.2", - "@typescript-eslint/eslint-plugin": "^6.3.0", - "@typescript-eslint/parser": "^6.3.0", - "css-tree": "^2.3.1", - "eslint": "^8.47.0", - "rimraf": "^5.0.1", - "tsc-watch": "^6.0.4", - "typescript": "^5.1.6" - }, - "files": [ - "cjs", - "esm", - "types" - ], - "license": "MIT", - "main": "cjs", - "module": "esm", - "type": "module", - "private": false, - "repository": { - "type": "git", - "url": "https://github.com/css-hooks/css-hooks.git", - "directory": "packages/core" - }, - "scripts": { - "clean": "rimraf cjs esm out types", - "lint": "eslint src .*.*js *.*js", - "prepublishOnly": "tsc -p tsconfig.dist.json --outDir esm --module es6 && tsc -p tsconfig.dist.json --outDir cjs --module commonjs && tsc -p tsconfig.dist.json --outDir types --declaration --emitDeclarationOnly", - "test": "echo 0 ", - "test.watch": "tsc-watch --onSuccess 'node --test'" - }, - "types": "types", - "exports": { - ".": { - "import": "./esm/index.js", - "require": "./cjs/index.js", - "types": "./types/index.d.ts" - } - } -}