-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.49 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
{
"name": "@runopencode/stencil-context",
"type": "module",
"version": "0.7.0",
"description": "Implementation of Context Protocol for Stencil.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/stencil-context/stencil-context.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/runopencode/stencil-context.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil-test --coverage" ,
"test:watch": "stencil-test --watch",
"test:e2e": "stencil-test --project browser",
"test:spec": "stencil-test --project spec"
},
"dependencies": {
"@stencil/core": "^4.0"
},
"devDependencies": {
"@stencil/mock-doc": "^5.0.0-alpha.28",
"@stencil/vitest": "^1.14.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"@vitest/browser-playwright": "^4.1.10",
"@vitest/coverage-v8": "^4.1.10",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"puppeteer": "^24.3.0",
"vitest": "^4.1.10"
},
"author": "Nikola Svitlica, a.k.a TheCelavi",
"license": "MIT"
}