@lasuillard/raindrop-client 0.7.5 → 0.7.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,73 +1,81 @@
1
1
  {
2
- "name": "@lasuillard/raindrop-client",
3
- "version": "0.7.5",
4
- "description": "Axios client built with OpenAPI generator for Raindrop.io.",
5
- "keywords": [
6
- "raindrop.io",
7
- "axios",
8
- "openapi"
9
- ],
10
- "license": "MIT",
11
- "repository": {
12
- "type": "git",
13
- "url": "git+https://github.com/lasuillard-s/raindrop-client.git"
14
- },
15
- "author": {
16
- "name": "Yuchan Lee",
17
- "url": "https://github.com/lasuillard",
18
- "email": "lasuillard@gmail.com"
19
- },
20
- "homepage": "https://github.com/lasuillard-s/raindrop-client",
21
- "bugs": {
22
- "url": "https://github.com/lasuillard-s/raindrop-client/issues"
23
- },
24
- "engines": {
25
- "node": ">=20"
26
- },
27
- "packageManager": "npm@11.5.2+sha512.aac1241cfc3f41dc38780d64295c6c6b917a41e24288b33519a7b11adfc5a54a5f881c642d7557215b6c70e01e55655ed7ba666300fd0238bc75fb17478afaf3",
28
- "main": "./dist/index.cjs.js",
29
- "module": "./dist/index.es.js",
30
- "types": "./dist/index.d.ts",
31
- "files": [
32
- "dist"
33
- ],
34
- "publishConfig": {
35
- "access": "public"
36
- },
37
- "scripts": {
38
- "generate": "openapi-generator-cli generate --input-spec openapi.yaml --generator-name typescript-axios --output ./src/generated/ --skip-validate-spec --additional-properties enumPropertyNamingReplaceSpecialChar=true",
39
- "dev": "vite",
40
- "build": "tsc && vite build",
41
- "preview": "vite preview",
42
- "test": "npm run test:unit && npm run test:type",
43
- "test:unit": "vitest --coverage --run --outputFile.junit=./junit.xml",
44
- "test:type": "vitest --typecheck.only --run --outputFile.junit=./typecheck.junit.xml",
45
- "make-docs": "typedoc --plugin typedoc-plugin-missing-exports src"
46
- },
47
- "devDependencies": {
48
- "@biomejs/biome": "^2.0.6",
49
- "@codecov/vite-plugin": "^1.9.1",
50
- "@openapitools/openapi-generator-cli": "^2.13.1",
51
- "@pollyjs/adapter-node-http": "^6.0.6",
52
- "@pollyjs/core": "^6.0.6",
53
- "@pollyjs/persister-fs": "^6.0.6",
54
- "@types/node": "^24.0.8",
55
- "@vitest/coverage-v8": "^3.0.4",
56
- "@vitest/ui": "^3.0.4",
57
- "axios-mock-adapter": "^2.0.0",
58
- "axios-rate-limit": "^1.4.0",
59
- "dotenv": "^17.0.0",
60
- "slugify": "^1.6.6",
61
- "tslib": "^2.6.2",
62
- "typedoc": "^0.28.1",
63
- "typedoc-plugin-missing-exports": "^4.0.0",
64
- "typescript": "^5.4.3",
65
- "vite": "^6.3.5",
66
- "vite-plugin-dts": "^4.2.1",
67
- "vite-tsconfig-paths": "^5.0.1",
68
- "vitest": "^3.0.4"
69
- },
70
- "dependencies": {
71
- "axios": "^1.6.8"
72
- }
2
+ "name": "@lasuillard/raindrop-client",
3
+ "version": "0.7.7",
4
+ "description": "Axios client built with OpenAPI generator for Raindrop.io.",
5
+ "keywords": [
6
+ "raindrop.io",
7
+ "axios",
8
+ "openapi"
9
+ ],
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/lasuillard-s/raindrop-client.git"
14
+ },
15
+ "author": {
16
+ "name": "Yuchan Lee",
17
+ "url": "https://github.com/lasuillard",
18
+ "email": "lasuillard@gmail.com"
19
+ },
20
+ "homepage": "https://github.com/lasuillard-s/raindrop-client",
21
+ "bugs": {
22
+ "url": "https://github.com/lasuillard-s/raindrop-client/issues"
23
+ },
24
+ "engines": {
25
+ "node": ">=20"
26
+ },
27
+ "packageManager": "npm@11.14.1",
28
+ "main": "./dist/index.cjs.js",
29
+ "module": "./dist/index.es.js",
30
+ "types": "./dist/index.d.ts",
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "scripts": {
38
+ "generate": "openapi-generator-cli generate --input-spec openapi.yaml --generator-name typescript-axios --output ./src/generated/ --skip-validate-spec --additional-properties enumPropertyNamingReplaceSpecialChar=true",
39
+ "dev": "vite",
40
+ "build": "tsc && vite build",
41
+ "preview": "vite preview",
42
+ "fmt": "biome format --write .",
43
+ "fmt:check": "biome format .",
44
+ "lint": "biome lint .",
45
+ "lint:fix": "biome lint --fix .",
46
+ "typecheck": "tsc --noEmit",
47
+ "test": "npm run test:unit && npm run test:type",
48
+ "test:unit": "vitest --coverage --run --outputFile.junit=./junit.xml",
49
+ "test:type": "vitest --typecheck.only --run --outputFile.junit=./typecheck.junit.xml",
50
+ "make-docs": "typedoc --plugin typedoc-plugin-missing-exports src"
51
+ },
52
+ "devDependencies": {
53
+ "@biomejs/biome": "2.4.15",
54
+ "@codecov/vite-plugin": "2.0.1",
55
+ "@openapitools/openapi-generator-cli": "2.32.0",
56
+ "@pollyjs/adapter-node-http": "6.0.6",
57
+ "@pollyjs/core": "6.0.6",
58
+ "@pollyjs/persister-fs": "6.0.6",
59
+ "@types/node": "25.7.0",
60
+ "@vitest/coverage-v8": "4.1.6",
61
+ "@vitest/ui": "4.1.6",
62
+ "axios-mock-adapter": "2.1.0",
63
+ "axios-rate-limit": "1.9.0",
64
+ "dotenv": "17.4.2",
65
+ "slugify": "1.6.9",
66
+ "tslib": "2.8.1",
67
+ "typedoc": "0.28.19",
68
+ "typedoc-plugin-missing-exports": "4.1.3",
69
+ "typescript": "6.0.3",
70
+ "vite": "8.0.12",
71
+ "vite-plugin-dts": "4.5.4",
72
+ "vite-tsconfig-paths": "6.1.1",
73
+ "vitest": "4.1.6"
74
+ },
75
+ "dependencies": {
76
+ "axios": "^1.6.8"
77
+ },
78
+ "overrides": {
79
+ "vite": "8.0.12"
80
+ }
73
81
  }