|
1 | 1 | { |
2 | 2 | "name": "unplugin-quansync", |
| 3 | + "type": "module", |
3 | 4 | "version": "0.4.5", |
4 | | - "packageManager": "pnpm@10.22.0", |
| 5 | + "packageManager": "pnpm@10.24.0", |
5 | 6 | "description": "Write async functions, get both async and sync functions", |
6 | | - "type": "module", |
| 7 | + "author": "Kevin Deng <sxzz@sxzz.moe>", |
| 8 | + "license": "MIT", |
| 9 | + "funding": "https://github.com/sponsors/sxzz", |
| 10 | + "homepage": "https://github.com/quansync-dev/unplugin-quansync#readme", |
| 11 | + "repository": { |
| 12 | + "type": "git", |
| 13 | + "url": "git+https://github.com/quansync-dev/unplugin-quansync.git" |
| 14 | + }, |
| 15 | + "bugs": { |
| 16 | + "url": "https://github.com/quansync-dev/unplugin-quansync/issues" |
| 17 | + }, |
7 | 18 | "keywords": [ |
8 | 19 | "async", |
9 | 20 | "sync", |
|
18 | 29 | "esbuild", |
19 | 30 | "farm" |
20 | 31 | ], |
21 | | - "license": "MIT", |
22 | | - "homepage": "https://github.com/quansync-dev/unplugin-quansync#readme", |
23 | | - "bugs": { |
24 | | - "url": "https://github.com/quansync-dev/unplugin-quansync/issues" |
25 | | - }, |
26 | | - "repository": { |
27 | | - "type": "git", |
28 | | - "url": "git+https://github.com/quansync-dev/unplugin-quansync.git" |
29 | | - }, |
30 | | - "author": "Kevin Deng <sxzz@sxzz.moe>", |
31 | | - "funding": "https://github.com/sponsors/sxzz", |
32 | | - "files": [ |
33 | | - "dist" |
34 | | - ], |
35 | | - "main": "./dist/index.mjs", |
36 | | - "module": "./dist/index.mjs", |
37 | | - "types": "./dist/index.d.mts", |
| 32 | + "sideEffects": false, |
38 | 33 | "exports": { |
39 | 34 | ".": "./dist/index.mjs", |
40 | 35 | "./api": "./dist/api.mjs", |
|
47 | 42 | "./webpack": "./dist/webpack.mjs", |
48 | 43 | "./package.json": "./package.json" |
49 | 44 | }, |
| 45 | + "main": "./dist/index.mjs", |
| 46 | + "module": "./dist/index.mjs", |
| 47 | + "types": "./dist/index.d.mts", |
50 | 48 | "typesVersions": { |
51 | 49 | "*": { |
52 | 50 | "*": [ |
|
55 | 53 | ] |
56 | 54 | } |
57 | 55 | }, |
58 | | - "sideEffects": false, |
| 56 | + "files": [ |
| 57 | + "dist" |
| 58 | + ], |
59 | 59 | "publishConfig": { |
60 | 60 | "access": "public" |
61 | 61 | }, |
| 62 | + "engines": { |
| 63 | + "node": ">=20.19.0" |
| 64 | + }, |
62 | 65 | "scripts": { |
63 | 66 | "lint": "eslint --cache .", |
64 | 67 | "lint:fix": "pnpm run lint --fix", |
65 | 68 | "build": "tsdown", |
66 | 69 | "dev": "tsdown --watch", |
67 | 70 | "test": "vitest", |
68 | | - "typecheck": "tsc --noEmit", |
| 71 | + "typecheck": "tsgo --noEmit", |
69 | 72 | "release": "bumpp", |
70 | 73 | "prepublishOnly": "pnpm run build" |
71 | 74 | }, |
|
75 | 78 | "dependencies": { |
76 | 79 | "ast-kit": "^2.2.0", |
77 | 80 | "magic-string-ast": "^1.0.3", |
78 | | - "unplugin": "^2.3.10" |
| 81 | + "unplugin": "^2.3.11" |
79 | 82 | }, |
80 | 83 | "devDependencies": { |
81 | 84 | "@babel/types": "^7.28.5", |
82 | | - "@sxzz/eslint-config": "^7.2.10", |
83 | | - "@sxzz/prettier-config": "^2.2.4", |
84 | | - "@sxzz/test-utils": "^0.5.12", |
| 85 | + "@sxzz/eslint-config": "^7.4.1", |
| 86 | + "@sxzz/prettier-config": "^2.2.6", |
| 87 | + "@sxzz/test-utils": "^0.5.13", |
85 | 88 | "@types/node": "^24.10.1", |
86 | | - "bumpp": "^10.3.1", |
| 89 | + "@typescript/native-preview": "7.0.0-dev.20251202.1", |
| 90 | + "bumpp": "^10.3.2", |
87 | 91 | "eslint": "^9.39.1", |
88 | | - "prettier": "^3.6.2", |
| 92 | + "prettier": "^3.7.3", |
89 | 93 | "quansync": "^0.2.11", |
90 | | - "tsdown": "^0.16.4", |
| 94 | + "tsdown": "^0.17.0-beta.5", |
91 | 95 | "typescript": "^5.9.3", |
92 | | - "vite": "^7.2.2", |
93 | | - "vitest": "^4.0.8" |
94 | | - }, |
95 | | - "engines": { |
96 | | - "node": ">=20.19.0" |
| 96 | + "vite": "^7.2.6", |
| 97 | + "vitest": "^4.0.15" |
97 | 98 | }, |
98 | 99 | "prettier": "@sxzz/prettier-config" |
99 | 100 | } |
0 commit comments