-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (70 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (70 loc) · 1.79 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
{
"name": "use-thunk",
"version": "16.1.2",
"type": "module",
"description": "A framework easily using useThunk to manage the data-state.",
"homepage": "https://github.com/chhsiao1981/use-thunk",
"repository": {
"type": "git",
"url": "https://github.com/chhsiao1981/use-thunk"
},
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"default": "./dist/index.umd.cjs"
}
},
"files": [
"dist"
],
"author": {
"name": "Chuan-Heng Hsiao",
"email": "hsiao.chuanheng@gmail.com"
},
"keywords": [
"react",
"thunk",
"useThunk"
],
"scripts": {
"compile:lib": "vite build",
"compile:types": "tsc -b",
"build": "npm run compile:lib && npm run compile:types",
"lint": "biome lint --error-on-warnings",
"test": "vitest run",
"coverage": "vitest run --coverage --reporter=junit --outputFile=test-report.junit.xml",
"docs": "mkdocs build",
"docs:dev": "mkdocs serve"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^8.0.1",
"@biomejs/biome": "2.3.11",
"@rolldown/plugin-babel": "^0.2.3",
"@types/babel__core": "^7.20.5",
"@types/node": "^26.0.1",
"@types/react-dom": ">=18.3.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.8",
"babel-plugin-react-compiler": "^1.0.0",
"globals": "^17.6.0",
"happy-dom": "^20.10.2",
"jiti": "^2.7.0",
"react-dom": ">=18.3.1",
"typescript": "~7.0.2",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"dependencies": {
"react-compiler-runtime": "^1.0.0"
},
"peerDependencies": {
"@types/react": ">=18.3.1",
"react": ">=18.3.1"
}
}