-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.61 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@rstackio/services",
"version": "0.1.0",
"private": false,
"keywords": [
"abort",
"async",
"axios",
"chainable",
"data-fetching",
"data-layer",
"data-provider",
"dx",
"error-handling",
"fetch",
"fetcher",
"ky",
"mock",
"promise",
"promisify",
"provider",
"safe",
"type-safe",
"typescript",
"logger",
"log",
"react-query"
],
"homepage": "https://github.com/rstackio/services#readme",
"bugs": {
"url": "https://github.com/rstackio/services/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rstackio/services.git"
},
"license": "MIT",
"author": {
"name": "Rudolf Kovalov",
"url": "https://github.com/rkovalov"
},
"type": "module",
"exports": {
"./*": {
"types": "./dist/*/index.d.ts",
"import": "./dist/*/index.js"
}
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rslib build",
"changeset": "changeset",
"check:deps": "knip",
"check:types": "tsc --noEmit",
"dev": "rslib build --watch",
"format": "biome format --write",
"format:lint": "biome check --diagnostic-level=error --no-errors-on-unmatched",
"preinstall": "npx only-allow pnpm",
"lint": "biome lint --write",
"prepare": "simple-git-hooks",
"release": "pnpm publish --access public --provenance --no-git-checks",
"test": "rstest run",
"test:build": "rstest run --config rstest.build.config.ts",
"test:coverage": "rstest run --coverage",
"test:related": "rstest run --passWithNoTests",
"test:watch": "rstest watch"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit"
},
"lint-staged": {
"package.json": [
"sort-package-json",
"pnpm format:lint --write"
],
"*.{js,ts,mts,tsx,css,md,json}": [
"pnpm format:lint --write"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@rslib/core": "^0.19.6",
"@rstest/adapter-rslib": "^0.2.0",
"@rstest/core": "^0.8.5",
"@rstest/coverage-istanbul": "^0.2.1",
"@types/node": "^24.10.13",
"happy-dom": "^20.7.0",
"knip": "^5.85.0",
"lint-staged": "^16.3.0",
"simple-git-hooks": "^2.13.1",
"sort-package-json": "^3.6.1",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
}
}