|
1 | 1 | { |
2 | 2 | "name": "webflow-api", |
3 | | - "version": "3.2.2", |
| 3 | + "version": "3.3.0-beta", |
4 | 4 | "private": false, |
5 | | - "repository": "https://github.com/webflow/js-webflow-api", |
| 5 | + "repository": "github:webflow/js-webflow-api", |
6 | 6 | "main": "./index.js", |
7 | 7 | "types": "./index.d.ts", |
8 | 8 | "scripts": { |
9 | | - "format": "prettier . --write --ignore-unknown", |
| 9 | + "format": "biome format --write --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none", |
| 10 | + "format:check": "biome format --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none", |
| 11 | + "lint": "biome lint --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none", |
| 12 | + "lint:fix": "biome lint --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none", |
| 13 | + "check": "biome check --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none", |
| 14 | + "check:fix": "biome check --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none", |
10 | 15 | "build": "tsc", |
11 | 16 | "prepack": "cp -rv dist/. .", |
12 | | - "test": "jest tests/unit --passWithNoTests", |
13 | | - "test:wire": "jest tests/wire --passWithNoTests", |
14 | | - "wire:test": "yarn test:wire" |
| 17 | + "test": "jest --config jest.config.mjs", |
| 18 | + "test:unit": "jest --selectProjects unit", |
| 19 | + "test:wire": "jest --selectProjects wire" |
15 | 20 | }, |
16 | 21 | "dependencies": { |
17 | | - "url-join": "4.0.1", |
18 | | - "form-data": "^4.0.0", |
| 22 | + "form-data": "^4.0.4", |
19 | 23 | "formdata-node": "^6.0.3", |
20 | 24 | "node-fetch": "^2.7.0", |
21 | | - "qs": "^6.13.1", |
22 | 25 | "readable-stream": "^4.5.2", |
23 | | - "js-base64": "3.7.7", |
24 | 26 | "crypto-browserify": "^3.12.1" |
25 | 27 | }, |
26 | 28 | "devDependencies": { |
27 | | - "@types/url-join": "4.0.1", |
28 | | - "@types/qs": "^6.9.17", |
29 | 29 | "@types/node-fetch": "^2.6.12", |
30 | 30 | "@types/readable-stream": "^4.0.18", |
31 | 31 | "webpack": "^5.97.1", |
|
37 | 37 | "jest-environment-jsdom": "^29.7.0", |
38 | 38 | "msw": "2.11.2", |
39 | 39 | "@types/node": "^18.19.70", |
40 | | - "prettier": "^3.4.2", |
41 | 40 | "typescript": "~5.7.2", |
| 41 | + "@biomejs/biome": "2.3.1", |
42 | 42 | "jest-fetch-mock": "^3.0.3" |
43 | 43 | }, |
44 | 44 | "browser": { |
45 | 45 | "fs": false, |
46 | 46 | "os": false, |
47 | 47 | "path": false, |
| 48 | + "stream": false, |
48 | 49 | "crypto": false |
49 | 50 | }, |
50 | 51 | "packageManager": "yarn@1.22.22", |
| 52 | + "engines": { |
| 53 | + "node": ">=18.0.0" |
| 54 | + }, |
| 55 | + "sideEffects": false, |
51 | 56 | "resolutions": { |
52 | 57 | "pbkdf2": "^3.1.3", |
53 | 58 | "@types/babel__traverse": "7.20.6" |
|
0 commit comments