@lasuillard/raindrop-client 0.7.0 → 0.7.1
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/README.md +1 -1
- package/package.json +11 -7
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ $ npm install @lasuillard/raindrop-client
|
|
|
28
28
|
You can use OpenAPI schema in this repository to generate your own client. Following is example using [openapitools/openapi-generator-cli](https://www.npmjs.com/package/@openapitools/openapi-generator-cli):
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
$
|
|
31
|
+
$ npm install --global @openapitools/openapi-generator-cli
|
|
32
32
|
$ openapi-generator-cli generate -i https://raw.githubusercontent.com/lasuillard/raindrop-client/main/openapi.yaml -g typescript-axios --skip-validate-spec -o ./out
|
|
33
33
|
```
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lasuillard/raindrop-client",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Axios client built with OpenAPI generator for Raindrop.io.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"raindrop.io",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "https://github.com/lasuillard/raindrop-client.git"
|
|
13
|
+
"url": "git+https://github.com/lasuillard/raindrop-client.git"
|
|
14
14
|
},
|
|
15
15
|
"author": {
|
|
16
16
|
"name": "Yuchan Lee",
|
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
"bugs": {
|
|
22
22
|
"url": "https://github.com/lasuillard/raindrop-client/issues"
|
|
23
23
|
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=20"
|
|
26
|
+
},
|
|
27
|
+
"packageManager": "npm@11.5.2+sha512.aac1241cfc3f41dc38780d64295c6c6b917a41e24288b33519a7b11adfc5a54a5f881c642d7557215b6c70e01e55655ed7ba666300fd0238bc75fb17478afaf3",
|
|
24
28
|
"main": "./dist/index.cjs.js",
|
|
25
29
|
"module": "./dist/index.es.js",
|
|
26
30
|
"types": "./dist/index.d.ts",
|
|
@@ -31,18 +35,18 @@
|
|
|
31
35
|
"access": "public"
|
|
32
36
|
},
|
|
33
37
|
"scripts": {
|
|
34
|
-
"generate": "openapi-generator-cli generate -
|
|
38
|
+
"generate": "openapi-generator-cli generate --input-spec openapi.yaml --generator-name typescript-axios --output ./src/generated/ --skip-validate-spec --additional-properties enumPropertyNamingReplaceSpecialChar=true",
|
|
35
39
|
"dev": "vite",
|
|
36
40
|
"build": "tsc && vite build",
|
|
37
41
|
"preview": "vite preview",
|
|
38
|
-
"test": "
|
|
42
|
+
"test": "npm run test:unit && npm run test:type",
|
|
39
43
|
"test:unit": "vitest --coverage --run --outputFile.junit=./junit.xml",
|
|
40
44
|
"test:type": "vitest --typecheck.only --run --outputFile.junit=./typecheck.junit.xml",
|
|
41
|
-
"make-docs": "
|
|
45
|
+
"make-docs": "typedoc --plugin typedoc-plugin-missing-exports src"
|
|
42
46
|
},
|
|
43
47
|
"devDependencies": {
|
|
44
48
|
"@biomejs/biome": "^2.0.6",
|
|
45
|
-
"@codecov/vite-plugin": "^1.1
|
|
49
|
+
"@codecov/vite-plugin": "^1.9.1",
|
|
46
50
|
"@openapitools/openapi-generator-cli": "^2.13.1",
|
|
47
51
|
"@pollyjs/adapter-node-http": "^6.0.6",
|
|
48
52
|
"@pollyjs/core": "^6.0.6",
|
|
@@ -58,7 +62,7 @@
|
|
|
58
62
|
"typedoc": "^0.28.1",
|
|
59
63
|
"typedoc-plugin-missing-exports": "^4.0.0",
|
|
60
64
|
"typescript": "^5.4.3",
|
|
61
|
-
"vite": "^
|
|
65
|
+
"vite": "^6.3.5",
|
|
62
66
|
"vite-plugin-dts": "^4.2.1",
|
|
63
67
|
"vite-tsconfig-paths": "^5.0.1",
|
|
64
68
|
"vitest": "^3.0.4"
|