-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "@stable-spin/react",
"version": "1.1.1",
"private": false,
"description": "A helper for displaying spinners",
"keywords": [
"loading",
"spinner",
"ux",
"user-experience"
],
"homepage": "https://github.com/Haberkamp/stable-spin",
"bugs": {
"url": "https://github.com/Haberkamp/stable-spin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Haberkamp/stable-spin"
},
"license": "MIT",
"author": "Nils Haberkamp <haberkamp.n@gmail.com> (https://haberkamp.dev)",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "vitest",
"exports:check": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "vitest run"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@eslint/js": "^9.21.0",
"@testing-library/react": "^16.2.0",
"eslint": "^9.21.0",
"happy-dom": "^17.1.2",
"prettier": "^3.5.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.1",
"vitest": "^3.0.6"
},
"peerDependencies": {
"@types/react": "^18.0.0 || ^19.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"packageManager": "pnpm@10.4.1"
}