-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 894 Bytes
/
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
{
"name": "@subscribe-kit/core",
"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 <[email protected]>",
"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:*",
"immer": "^10.0.2",
"types-kit": "^0.0.11"
},
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts"
}
}