-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "@subscribe-kit/react",
"version": "2.1.1",
"description": "a subscribe toolkit",
"keywords": [
"subscribe",
"event",
"listen",
"toolkit"
],
"homepage": "https://github.com/Col0ring/subscribe-kit",
"repository": {
"type": "git",
"url": "https://github.com/Col0ring/subscribe-kit.git"
},
"author": "Col0ring <1561999073@qq.com>",
"main": "src/index.ts",
"module": "src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin 'typescript={tsconfig: `./tsconfig.build.json`}'"
},
"dependencies": {
"@babel/runtime": "^7.22.5",
"@subscribe-kit/shared": "workspace:*",
"lodash": "^4.17.21",
"use-sync-external-store": "^1.2.0"
},
"devDependencies": {
"@subscribe-kit/core": "workspace:*",
"@types/lodash": "^4.14.195",
"@types/react": "^18.2.12",
"@types/use-sync-external-store": "^0.0.3",
"react": "^18.2.0"
},
"peerDependencies": {
"@subscribe-kit/core": ">=2.0.0",
"react": ">=17.0.0"
},
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts"
}
}