|
10 | 10 | }, |
11 | 11 | "description": "A React component which can parse JSX and output rendered React Components", |
12 | 12 | "devDependencies": { |
13 | | - "@happy-dom/global-registrator": "^14.12.3", |
14 | | - "@types/acorn": "^4.0.6", |
| 13 | + "@happy-dom/global-registrator": "^15.7.4", |
| 14 | + "@types/acorn": "^6.0.0", |
15 | 15 | "@types/bun": "^1.1.6", |
16 | | - "@typescript-eslint/eslint-plugin": "^7.15.0", |
17 | | - "@typescript-eslint/parser": "^7.15.0", |
| 16 | + "@typescript-eslint/eslint-plugin": "^8.0.0", |
| 17 | + "@typescript-eslint/parser": "^8.0.0", |
18 | 18 | "basis": "github:TroyAlford/basis#v1.1.0", |
19 | | - "concurrently": "^8.2.2", |
| 19 | + "concurrently": "^9.0.1", |
20 | 20 | "cross-env": "^7.0.3", |
21 | | - "eslint": "^8.57.0", |
| 21 | + "eslint": "8.57.1", |
22 | 22 | "eslint-config-airbnb": "^19.0.4", |
23 | | - "eslint-plugin-import": "^2.29.1", |
| 23 | + "eslint-plugin-import": "2.31.0", |
24 | 24 | "eslint-plugin-jsx-a11y": "^6.9.0", |
25 | | - "eslint-plugin-react": "^7.34.3", |
| 25 | + "eslint-plugin-react": "7.37.2", |
26 | 26 | "mkdirp": "^3.0.1", |
27 | 27 | "react": "^18.3.1", |
28 | 28 | "react-dom": "^18.3.1", |
|
56 | 56 | "scripts": { |
57 | 57 | "build": "bun build:types && bun build:code", |
58 | 58 | "build:code": "bun build --target=browser --outfile=./dist/react-jsx-parser.min.js ./source/index.ts --external react --external react-dom", |
59 | | - "build:types": "bun run tsc -p ./tsconfig.json -d --emitDeclarationOnly", |
| 59 | + "build:types": "bun run tsc -p ./tsconfig.json -d --emitDeclarationOnly --preserveWatchOutput", |
60 | 60 | "develop": "NODE_ENV=production concurrently -n build,ts,demo -c green,cyan,yellow \"bun build:code --watch\" \"bun build:types --watch\" \"bun serve\"", |
61 | 61 | "lint": "bun eslint --ext .js,.ts,.tsx source/", |
62 | 62 | "prebuild": "mkdirp ./dist && rm -rf ./dist/*", |
63 | | - "serve": "bun serve --port=8080 --open", |
| 63 | + "serve": "bun ./demo/server.ts", |
64 | 64 | "test": "bun lint && bun test" |
65 | 65 | }, |
66 | 66 | "types": "dist/index.d.ts", |
67 | | - "version": "2.2.0" |
| 67 | + "version": "2.2.1" |
68 | 68 | } |
0 commit comments