-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 998 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
{
"name": "@dsl400/rxhub",
"version": "0.0.2",
"description": "Utility that provides all necesary tools to stream data in javascript applications",
"public": true,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"dev": "nodemon --watch 'samples/**/*' --watch 'src/**/*' -e ts --exec 'ts-node -P tsconfig.test.json samples/test.ts'",
"test": "vitest run",
"ci": "pnpm lint && pnpm test && pnpm build",
"release": "pnpm lint && pnpm test && pnpm build && changesets publish"
},
"keywords": [
"rxhub",
"rxjs"
],
"author": "Valentin Sasek",
"license": "MIT",
"dependencies": {
"rxjs": "^7.8.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.9.3",
"firebase": "^10.6.0",
"nodemon": "^3.0.1",
"tsup": "^8.0.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}