-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 985 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
38
39
40
{
"name": "@youngdo/rx-state",
"version": "0.2.3",
"description": "State management library by using Rxjs.",
"homepage": "https://github.com/young-do/rx-state#readme",
"bugs": {
"url": "https://github.com/young-do/rx-state/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/young-do/rx-state.git"
},
"license": "MIT",
"author": "Young-do Cho <[email protected]> (https://github.com/young-do)",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.prod.json",
"clean": "rm -rf ./dist",
"prepare": "yarn clean && yarn build",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"rxjs": "^7.5.7"
},
"devDependencies": {
"c8": "^7.11.3",
"prettier": "^2.5.1",
"typescript": "4.5.4",
"vitest": "^0.18.0"
},
"peerDependencies": {
"rxjs": ">=7.0.0"
}
}