-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"name": "@dctalbot/react-spinitron",
"author": "dctalbot",
"license": "MIT",
"private": false,
"type": "module",
"version": "2.0.1",
"description": "A Spinitron API client",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:cjs": "esbuild src/index.ts --format=cjs --packages=external --bundle --outfile=lib/index.cjs",
"build:dts": "tsc",
"build:esm": "esbuild src/index.ts --format=esm --packages=external --bundle --outfile=lib/index.mjs",
"build": "npm run build:cjs && npm run build:dts && npm run build:esm",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dctalbot/react-spinitron.git"
},
"keywords": [
"spinitron"
],
"bugs": {
"url": "https://github.com/dctalbot/react-spinitron/issues"
},
"homepage": "https://github.com/dctalbot/react-spinitron#readme",
"dependencies": {
"@tanstack/react-query": "^5"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/react": "^18.2.66",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"openapi-typescript": "^6.7.5",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"typescript-eslint": "^7.2.0",
"vite": "^5.1.6",
"vitest": "^1.3.1"
},
"exports": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
},
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"files": [
"./lib"
]
}