-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 KB
/
package.json
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": "@grapp/wave",
"description": "Bring the power of reactive programming to your React applications.",
"version": "0.2.2",
"license": "MIT",
"author": "Marcin Dziewulski <[email protected]>",
"react-native": "src/index.ts",
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.mts",
"files": [
"src",
"lib",
"*.md",
"package.json"
],
"scripts": {
"build": "rm -rf ./lib && tsup",
"types:check": "tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"homepage": "https://wave.grapp.dev",
"bugs": "https://github.com/grapp-dev/wave/issues",
"repository": {
"type": "git",
"url": "https://github.com/grapp-dev/wave.git"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"devDependencies": {
"@grapp/eslint-config": "^0.1.2",
"@grapp/prettier-config": "^0.1.1",
"@grapp/ts-config": "^0.1.3",
"@happy-dom/global-registrator": "^14.7.1",
"@testing-library/react": "^15.0.6",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^20.12.8",
"@types/react": "~18.3.1",
"bun-types": "^1.1.4",
"react": "^18.3.1",
"react-test-renderer": "^18.3.1",
"tsup": "^8.0.2"
},
"dependencies": {
"react-fast-compare": "^3.2.2",
"wonka": "^6.3.4"
}
}