-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.97 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@lasuillard/raindrop-client",
"version": "0.5.3",
"description": "Axios client built with OpenAPI generator for Raindrop.io.",
"keywords": ["raindrop.io", "axios", "openapi"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lasuillard/raindrop-client.git"
},
"author": {
"name": "Yuchan Lee",
"url": "https://github.com/lasuillard",
"email": "lasuillard@gmail.com"
},
"homepage": "https://github.com/lasuillard/raindrop-client",
"bugs": {
"url": "https://github.com/lasuillard/raindrop-client/issues"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"publishConfig": {
"access": "public"
},
"scripts": {
"generate": "openapi-generator-cli generate -i openapi.yaml -g typescript-axios -o ./src/generated/ --skip-validate-spec --additional-properties enumPropertyNamingReplaceSpecialChar=true",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "yarn test:unit && yarn test:type",
"test:unit": "vitest --coverage --run --outputFile.junit=./junit.xml",
"test:type": "vitest --typecheck.only --run --outputFile.junit=./typecheck.junit.xml",
"make-docs": "yarn run typedoc --plugin typedoc-plugin-missing-exports src"
},
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"@codecov/vite-plugin": "^1.1.0",
"@openapitools/openapi-generator-cli": "^2.13.1",
"@pollyjs/adapter-node-http": "^6.0.6",
"@pollyjs/core": "^6.0.6",
"@pollyjs/persister-fs": "^6.0.6",
"@types/node": "^22.0.2",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"axios-mock-adapter": "^2.0.0",
"axios-rate-limit": "^1.4.0",
"dotenv": "^16.4.5",
"slugify": "^1.6.6",
"tslib": "^2.6.2",
"typedoc": "^0.26.3",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vite-plugin-dts": "^4.2.1",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"dependencies": {
"axios": "^1.6.8"
}
}