-
-
Notifications
You must be signed in to change notification settings - Fork 843
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.25 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.25 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
59
60
61
{
"name": "@stencil/cli",
"version": "5.0.0-alpha.5",
"description": "CLI for Stencil - Web component compiler",
"keywords": [
"components",
"custom elements",
"ionic",
"progressive web app",
"pwa",
"stencil",
"web components",
"webapp"
],
"homepage": "https://stenciljs.com/",
"license": "MIT",
"author": "StencilJs Contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/stenciljs/core.git"
},
"bin": {
"stencil": "./bin/stencil.mjs"
},
"files": [
"bin/",
"dist/"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./cli": "./bin/stencil.mjs"
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@stencil/dev-server": "workspace:*",
"prompts": "^2.0.0"
},
"devDependencies": {
"@stencil/core": "workspace:*",
"@types/prompts": "^2.4.9",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"@stencil/core": "^5.0.0-0"
},
"volta": {
"extends": "../../package.json"
}
}