@lasuillard/raindrop-client 0.4.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/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@lasuillard/raindrop-client",
3
+ "version": "0.4.1",
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": "https://github.com/lasuillard/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/raindrop-client",
21
+ "bugs": {
22
+ "url": "https://github.com/lasuillard/raindrop-client/issues"
23
+ },
24
+ "main": "./dist/index.cjs.js",
25
+ "module": "./dist/index.es.js",
26
+ "types": "./dist/index.d.ts",
27
+ "files": [
28
+ "dist"
29
+ ],
30
+ "publishConfig": {
31
+ "access": "public"
32
+ },
33
+ "scripts": {
34
+ "generate": "openapi-generator-cli generate -i openapi.yaml -g typescript-axios -o ./src/generated/ --skip-validate-spec",
35
+ "dev": "vite",
36
+ "build": "tsc && vite build",
37
+ "preview": "vite preview",
38
+ "test": "vitest --coverage --run src tests",
39
+ "test:watch": "vitest --silent --coverage --watch --ui src tests",
40
+ "make-docs": "yarn run typedoc --plugin typedoc-plugin-missing-exports src"
41
+ },
42
+ "devDependencies": {
43
+ "@openapitools/openapi-generator-cli": "^2.13.1",
44
+ "@types/node": "^20.11.30",
45
+ "@typescript-eslint/eslint-plugin": "^5.62.0",
46
+ "@typescript-eslint/parser": "^5.62.0",
47
+ "@vitest/coverage-v8": "^0.34.6",
48
+ "@vitest/ui": "^0.34.7",
49
+ "axios-mock-adapter": "^1.22.0",
50
+ "eslint": "^8.57.0",
51
+ "eslint-config-prettier": "^9.1.0",
52
+ "eslint-plugin-jsdoc": "^48.2.1",
53
+ "prettier": "^3.2.5",
54
+ "tslib": "^2.6.2",
55
+ "typedoc": "^0.25.12",
56
+ "typedoc-plugin-missing-exports": "^2.2.0",
57
+ "typescript": "^5.4.3",
58
+ "vite": "^5.2.6",
59
+ "vite-plugin-dts": "^3.7.3",
60
+ "vite-tsconfig-paths": "^4.3.2",
61
+ "vitest": "^0.34.6"
62
+ },
63
+ "dependencies": {
64
+ "axios": "^1.6.8"
65
+ }
66
+ }