-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "@oikio/cafe-rxjs",
"version": "0.0.3",
"packageManager": "[email protected]",
"author": "Oikio <[email protected]>",
"main": "",
"repository": {
"type": "git",
"url": "git+https://github.com/Oikio/clean-architecture-fe.git"
},
"types": "lib/types.d.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/Oikio/clean-architecture-fe/issues"
},
"homepage": "https://github.com/Oikio/clean-architecture-fe#readme",
"scripts": {
"build": "rm -rf ./lib && mkdir lib && cp package.json lib/package.json && cp readme.md lib/readme.md && tsc",
"test": "test",
"publish": "yarn build && cd lib && yarn npm publish --access public"
},
"devDependencies": {
"@types/node": "^18.7.14",
"@types/react": "18.*.*",
"immer": "9.*.*",
"react": "18.*.*",
"rxjs": "6.*.*",
"rxjs-spy": "^8.0.2",
"typescript": "^4.8.2"
},
"peerDependencies": {
"@types/react": "18.*.*",
"immer": "9.*.*",
"react": "18.*.*",
"rxjs": "6.*.*",
"rxjs-spy": "^8.0.2"
}
}