|
1 | 1 | { |
2 | 2 | "name": "asyncbox", |
| 3 | + "version": "6.4.0", |
3 | 4 | "description": "A collection of small async/await utilities", |
4 | | - "tags": [ |
| 5 | + "keywords": [ |
| 6 | + "async", |
5 | 7 | "async/await", |
6 | | - "es7", |
7 | | - "async" |
| 8 | + "es7" |
8 | 9 | ], |
9 | | - "version": "6.4.0", |
10 | | - "author": "jlipps@gmail.com", |
| 10 | + "bugs": { |
| 11 | + "url": "https://github.com/appium/asyncbox/issues" |
| 12 | + }, |
11 | 13 | "license": "Apache-2.0", |
| 14 | + "author": "jlipps@gmail.com", |
12 | 15 | "repository": { |
13 | 16 | "type": "git", |
14 | 17 | "url": "https://github.com/appium/asyncbox.git" |
15 | 18 | }, |
16 | | - "bugs": { |
17 | | - "url": "https://github.com/appium/asyncbox/issues" |
18 | | - }, |
19 | | - "engines": { |
20 | | - "node": "^20.19.0 || ^22.12.0 || >=24.0.0", |
21 | | - "npm": ">=10" |
| 19 | + "bin": {}, |
| 20 | + "directories": { |
| 21 | + "lib": "./lib" |
22 | 22 | }, |
| 23 | + "files": [ |
| 24 | + "lib/**/*", |
| 25 | + "build/cjs/lib/**/*", |
| 26 | + "build/cjs/package.json", |
| 27 | + "build/esm/lib/**/*", |
| 28 | + "build/esm/package.json" |
| 29 | + ], |
23 | 30 | "type": "module", |
24 | 31 | "main": "./build/cjs/lib/asyncbox.js", |
25 | 32 | "module": "./build/esm/lib/asyncbox.js", |
|
37 | 44 | }, |
38 | 45 | "./package.json": "./package.json" |
39 | 46 | }, |
40 | | - "bin": {}, |
41 | | - "directories": { |
42 | | - "lib": "./lib" |
43 | | - }, |
44 | | - "files": [ |
45 | | - "lib/**/*", |
46 | | - "build/cjs/lib/**/*", |
47 | | - "build/cjs/package.json", |
48 | | - "build/esm/lib/**/*", |
49 | | - "build/esm/package.json" |
50 | | - ], |
51 | 47 | "scripts": { |
52 | 48 | "build": "tsc -b tsconfig.esm.json tsconfig.cjs.json", |
53 | 49 | "postbuild": "node scripts/postbuild.mjs", |
|
56 | 52 | "dev": "npm run build -- --watch", |
57 | 53 | "prepare": "npm run rebuild", |
58 | 54 | "test": "node --test --enable-source-maps --test-force-exit --test-timeout=60000 \"./build/esm/test/**/*.spec.js\" \"./test/*.spec.cjs\"", |
59 | | - "lint": "eslint .", |
60 | | - "format": "prettier -w ./lib ./test", |
61 | | - "format:check": "prettier --check ./lib ./test", |
| 55 | + "lint": "oxlint -c oxlint.config.mjs .", |
| 56 | + "lint:fix": "oxlint -c oxlint.config.mjs --fix .", |
| 57 | + "format": "oxfmt -c oxfmt.config.mjs .", |
| 58 | + "format:check": "oxfmt -c oxfmt.config.mjs --check .", |
62 | 59 | "watch": "npm run dev" |
63 | 60 | }, |
64 | | - "prettier": { |
65 | | - "bracketSpacing": false, |
66 | | - "printWidth": 100, |
67 | | - "singleQuote": true |
68 | | - }, |
69 | 61 | "dependencies": { |
70 | 62 | "p-limit": "^7.2.0" |
71 | 63 | }, |
72 | 64 | "devDependencies": { |
73 | | - "@appium/eslint-config-appium-ts": "^3.2.3", |
74 | | - "@appium/tsconfig": "^1.0.0", |
75 | | - "@semantic-release/changelog": "^6.0.1", |
76 | | - "@semantic-release/git": "^10.0.1", |
77 | | - "@types/node": "^26.1.0", |
78 | | - "conventional-changelog-conventionalcommits": "^9.0.0", |
79 | | - "prettier": "^3.0.0", |
80 | | - "semantic-release": "^25.0.2", |
81 | | - "typescript": "^6.0.3" |
| 65 | + "@appium/oxc-config": "^1.1.0", |
| 66 | + "@appium/semantic-release-config": "^1.1.0", |
| 67 | + "@appium/tsconfig": "^1.2.0", |
| 68 | + "@types/node": "^26.1.0" |
| 69 | + }, |
| 70 | + "engines": { |
| 71 | + "node": "^20.19.0 || ^22.12.0 || >=24.0.0", |
| 72 | + "npm": ">=10" |
82 | 73 | } |
83 | 74 | } |
0 commit comments