-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.61 KB
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
51
52
53
54
55
56
57
58
{
"name": "@runopencode/rx-stencil",
"version": "0.5.0",
"description": "ReactiveX (RxJS) utilities for Stencil",
"keywords": [
"stencil",
"stenciljs",
"rxjs",
"web components",
"reactive programming"
],
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/rx-stencil/rx-stencil.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/runopencode/rx-stencil"
},
"files": [
"dist/",
"loader/",
"docs/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil-test --coverage",
"test:watch": "stencil-test --watch"
},
"dependencies": {
"@stencil/core": "^4.0"
},
"peerDependencies": {
"rxjs": "^7.0"
},
"devDependencies": {
"@stencil/sass": "^3.3.3",
"@stencil/vitest": "^1.15.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.20.1",
"@vitest/browser": "^4.1.11",
"@vitest/browser-playwright": "^4.1.10",
"@vitest/coverage-v8": "^4.1.10",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jsdom": "^30.0.1",
"puppeteer": "^24.3.0",
"vitest": "^4.1.10"
},
"author": "Nikola Svitlica, a.k.a TheCelavi",
"license": "MIT"
}