-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.97 KB
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
{
"name": "@codecks/fetch",
"version": "0.1.5",
"description": "Quickly create deeply nested queries for the Codecks API with advanced TypeScript support",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/codecks-io/fetch#readme",
"bugs": {
"url": "https://github.com/codecks-io/fetch/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codecks-io/fetch.git"
},
"author": "Daniel Berndt <daniel@codecks.io>",
"files": [
"dist",
"schema"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./_exploration/store": "./dist/_exploration/store.js",
"./_exploration/loader": "./dist/_exploration/loader.js",
"./_exploration/api-requester": "./dist/_exploration/api-requester.js",
"./_exploration/react": "./dist/_exploration/create-hooks.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown && vite-node scripts/generate-schema-docs.ts",
"format": "prettier --write .",
"check-format": "prettier --check .",
"dev": "tsdown --watch",
"test": "vitest",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"ci": "npm run typecheck && npm run build && npm run check-format && npm run test:run",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.15.17",
"@types/react": "^19.2.2",
"happy-dom": "^20.0.10",
"msw": "^2.10.4",
"prettier": "^3.6.2",
"tsdown": "^0.11.9",
"typescript": "^5.9.2",
"vite-node": "^3.2.4",
"vitest": "^3.1.3"
},
"peerDependencies": {
"react": "^19.0.0"
}
}