|
| 1 | +{ |
| 2 | + "name": "@stackflow/plugin-lifecycle", |
| 3 | + "version": "0.0.1", |
| 4 | + "repository": { |
| 5 | + "type": "git", |
| 6 | + "url": "https://github.com/daangn/stackflow.git", |
| 7 | + "directory": "extensions/plugin-lifecycle" |
| 8 | + }, |
| 9 | + "license": "MIT", |
| 10 | + "exports": { |
| 11 | + ".": { |
| 12 | + "types": "./dist/index.d.ts", |
| 13 | + "require": "./dist/index.js", |
| 14 | + "import": "./dist/index.mjs" |
| 15 | + } |
| 16 | + }, |
| 17 | + "main": "./dist/index.js", |
| 18 | + "module": "./dist/index.mjs", |
| 19 | + "types": "./dist/index.d.ts", |
| 20 | + "files": [ |
| 21 | + "dist", |
| 22 | + "src", |
| 23 | + "README.md" |
| 24 | + ], |
| 25 | + "scripts": { |
| 26 | + "build": "yarn build:js && yarn build:dts", |
| 27 | + "build:dts": "tsc --emitDeclarationOnly", |
| 28 | + "build:js": "node ./esbuild.config.js", |
| 29 | + "clean": "rimraf dist", |
| 30 | + "dev": "yarn build:js --watch && yarn build:dts --watch", |
| 31 | + "test": "yarn jest", |
| 32 | + "typecheck": "tsc --noEmit" |
| 33 | + }, |
| 34 | + "jest": { |
| 35 | + "testEnvironment": "jsdom", |
| 36 | + "coveragePathIgnorePatterns": [ |
| 37 | + "index.ts" |
| 38 | + ], |
| 39 | + "transform": { |
| 40 | + "^.+\\.(t|j)sx?$": "@swc/jest" |
| 41 | + } |
| 42 | + }, |
| 43 | + "devDependencies": { |
| 44 | + "@stackflow/config": "^1.2.2", |
| 45 | + "@stackflow/core": "^1.3.0", |
| 46 | + "@stackflow/esbuild-config": "^1.0.3", |
| 47 | + "@stackflow/plugin-renderer-basic": "^1.1.13", |
| 48 | + "@stackflow/react": "^1.12.0", |
| 49 | + "@swc/core": "^1.6.6", |
| 50 | + "@swc/jest": "^0.2.36", |
| 51 | + "@testing-library/dom": "^10.4.0", |
| 52 | + "@testing-library/react": "^16.3.2", |
| 53 | + "@types/jest": "^29.5.12", |
| 54 | + "@types/react": "^18.3.3", |
| 55 | + "esbuild": "^0.27.3", |
| 56 | + "jest": "^29.7.0", |
| 57 | + "jest-environment-jsdom": "^29.7.0", |
| 58 | + "react": "^18.3.1", |
| 59 | + "react-dom": "^18.3.1", |
| 60 | + "rimraf": "^6.1.3", |
| 61 | + "typescript": "^5.5.3" |
| 62 | + }, |
| 63 | + "peerDependencies": { |
| 64 | + "@stackflow/core": "^1.1.0-canary.0", |
| 65 | + "@stackflow/react": "^1.3.2-canary.0", |
| 66 | + "react": ">=16.8.0" |
| 67 | + }, |
| 68 | + "publishConfig": { |
| 69 | + "access": "public" |
| 70 | + } |
| 71 | +} |
0 commit comments