-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "observable-signal",
"version": "0.1.2",
"description": "Observable and Signals merged together to support imperative and functional reactive paradigms",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"sideEffect": false,
"scripts": {
"build": "rimraf dist && rollup --bundleConfigAsCjs --config rollup.config.ts --configPlugin typescript",
"dev": "rimraf dist && rollup -w --bundleConfigAsCjs --config rollup.config.ts --configPlugin typescript",
"test": "bun test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReactiveH/observable-signal.git"
},
"keywords": [
"observable-signal",
"observable",
"signal",
"rxjs",
"rx",
"html",
"reactive"
],
"author": "Dario Mannu",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReactiveH/observable-signal"
},
"homepage": "https://github.com/ReactiveH/observable-signal",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"rimraf": "^3.0.2",
"rollup": "^4.9.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"rxjs": "^7.8.1"
}
}