|
1 | 1 | { |
2 | | - "name": "@replanejs/sdk", |
3 | | - "version": "0.6.1", |
4 | | - "description": "Dynamic configuration SDK for browser and server environments (Node.js, Deno, Bun). Powered by Replane.", |
5 | | - "type": "module", |
6 | | - "license": "MIT", |
7 | | - "homepage": "https://github.com/replane-dev/replane-javascript#readme", |
8 | | - "bugs": { |
9 | | - "url": "https://github.com/replane-dev/replane-javascript/issues" |
10 | | - }, |
11 | | - "repository": { |
12 | | - "type": "git", |
13 | | - "url": "git+https://github.com/replane-dev/replane-javascript.git" |
14 | | - }, |
15 | | - "author": "Dmitry Tilyupo <tilyupo@gmail.com>", |
16 | | - "files": [ |
17 | | - "dist" |
18 | | - ], |
19 | | - "main": "./dist/index.cjs", |
20 | | - "module": "./dist/index.js", |
21 | | - "types": "./dist/index.d.ts", |
22 | | - "exports": { |
23 | | - ".": { |
24 | | - "types": "./dist/index.d.ts", |
25 | | - "import": "./dist/index.js", |
26 | | - "require": "./dist/index.cjs" |
27 | | - }, |
28 | | - "./package.json": "./package.json" |
29 | | - }, |
30 | | - "publishConfig": { |
31 | | - "access": "public" |
32 | | - }, |
33 | | - "keywords": [ |
34 | | - "replane", |
35 | | - "config", |
36 | | - "configuration", |
37 | | - "dynamic configuration", |
38 | | - "remote config", |
39 | | - "feature-flags" |
40 | | - ], |
41 | | - "sideEffects": false, |
| 2 | + "name": "replanejs", |
| 3 | + "private": true, |
| 4 | + "description": "Replane JavaScript SDKs monorepo", |
42 | 5 | "scripts": { |
43 | | - "build": "pnpm run build:esm && pnpm run build:cjs", |
44 | | - "build:esm": "tsdown", |
45 | | - "build:cjs": "esbuild src/index.ts --platform=node --format=cjs --outfile=dist/index.cjs", |
46 | | - "dev": "tsdown --watch", |
47 | | - "test": "vitest run", |
48 | | - "typecheck": "tsc --noEmit", |
49 | | - "lint": "eslint src tests --max-warnings 0", |
50 | | - "lint:fix": "eslint src tests --fix", |
51 | | - "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"README.md\"", |
52 | | - "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"README.md\"", |
53 | | - "release": "pnpm run build && bumpp && npm publish" |
| 6 | + "build": "pnpm -r build", |
| 7 | + "test": "pnpm -r test", |
| 8 | + "typecheck": "pnpm -r typecheck", |
| 9 | + "lint": "eslint packages --max-warnings 0", |
| 10 | + "lint:fix": "eslint packages --fix", |
| 11 | + "format": "prettier --write \"packages/**/*.{ts,tsx}\"", |
| 12 | + "format:check": "prettier --check \"packages/**/*.{ts,tsx}\"", |
| 13 | + "clean": "pnpm -r exec rm -rf dist node_modules" |
54 | 14 | }, |
55 | 15 | "devDependencies": { |
56 | 16 | "@eslint/js": "^9.18.0", |
57 | | - "@types/node": "^22.15.17", |
58 | | - "@typescript-eslint/eslint-plugin": "^8.20.0", |
59 | | - "@typescript-eslint/parser": "^8.20.0", |
60 | | - "async-channel": "^0.2.0", |
61 | | - "bumpp": "^10.1.0", |
62 | | - "esbuild": "^0.23.1", |
| 17 | + "@types/node": "^25.0.3", |
63 | 18 | "eslint": "^9.18.0", |
64 | | - "prettier": "^3.4.2", |
65 | | - "tsdown": "^0.11.9", |
66 | | - "typescript": "^5.8.3", |
67 | | - "typescript-eslint": "^8.20.0", |
68 | | - "vitest": "^3.1.3" |
| 19 | + "eslint-plugin-react": "^7.37.0", |
| 20 | + "eslint-plugin-react-hooks": "^5.0.0", |
| 21 | + "prettier": "^3.4.0", |
| 22 | + "typescript": "^5.4.0", |
| 23 | + "typescript-eslint": "^8.20.0" |
69 | 24 | }, |
70 | | - "packageManager": "pnpm@10.7.0+sha1.66453f13fbf9078d3db193718206a8d738afdbdb" |
| 25 | + "packageManager": "pnpm@10.25.0", |
| 26 | + "engines": { |
| 27 | + "node": ">=18.0.0" |
| 28 | + } |
71 | 29 | } |
0 commit comments