-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 1.76 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@cocreators-ee/apity",
"description": "A typed fetch client for openapi-typescript with Svelte support",
"version": "0.0.5",
"readme": "README.md",
"engines": {
"node": ">= 12.0.0",
"npm": ">= 7.0.0"
},
"author": "Cocreators OÜ",
"license": "MIT",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/cocreators-ee/apity"
},
"keywords": [
"fetch",
"client",
"swagger",
"typescript",
"ts",
"openapi",
"openapi 3",
"node",
"svelte",
"sveltekit"
],
"bugs": {
"url": "https://github.com/cocreators-ee/apity/issues"
},
"homepage": "https://github.com/cocreators-ee/apity#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitest/coverage-c8": "^0.28.1",
"codecov": "^3.8.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jsdom": "^21.1.0",
"msw": "^0.35.0",
"prettier": "^2.4.0",
"rimraf": "^3.0.0",
"svelte": "^3.55.1",
"ts-node": "^10.0.0",
"typescript": "^4.4.3",
"vitest": "^0.28.1",
"whatwg-fetch": "^3.6.2"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"semi": false
},
"scripts": {
"clean": "rimraf './dist'",
"build": "pnpm run clean && tsc --project tsconfig.json",
"lint": "eslint .",
"prepare": "pnpm run build",
"test": "vitest",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage && codecov",
"typecheck": "tsc --noEmit --project tsconfig.json",
"format": "prettier -w ."
}
}