@stencil/cli 5.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +27 -0
- package/bin/stencil.mjs +14 -0
- package/dist/index.d.mts +153 -0
- package/dist/index.mjs +1832 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@stencil/cli",
|
|
3
|
+
"version": "5.0.0-alpha.1",
|
|
4
|
+
"description": "CLI for Stencil - Web component compiler",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"components",
|
|
7
|
+
"custom elements",
|
|
8
|
+
"ionic",
|
|
9
|
+
"progressive web app",
|
|
10
|
+
"pwa",
|
|
11
|
+
"stencil",
|
|
12
|
+
"web components",
|
|
13
|
+
"webapp"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://stenciljs.com/",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"author": "StencilJs Contributors",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/stenciljs/core.git"
|
|
21
|
+
},
|
|
22
|
+
"bin": {
|
|
23
|
+
"stencil": "./bin/stencil.mjs"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"bin/",
|
|
27
|
+
"dist/"
|
|
28
|
+
],
|
|
29
|
+
"type": "module",
|
|
30
|
+
"main": "./dist/index.mjs",
|
|
31
|
+
"types": "./dist/index.d.mts",
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"types": "./dist/index.d.mts",
|
|
35
|
+
"import": "./dist/index.mjs"
|
|
36
|
+
},
|
|
37
|
+
"./cli": "./bin/stencil.mjs"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"prompts": "^2.4.2",
|
|
41
|
+
"@stencil/dev-server": "5.0.0-alpha.1"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"tsdown": "^0.21.6",
|
|
45
|
+
"typescript": "~6.0.2",
|
|
46
|
+
"vitest": "^4.1.1",
|
|
47
|
+
"@stencil/core": "5.0.0-alpha.1"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@stencil/core": "^5.0.0-0"
|
|
51
|
+
},
|
|
52
|
+
"volta": {
|
|
53
|
+
"extends": "../../package.json"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"build": "tsdown",
|
|
57
|
+
"test": "vitest run",
|
|
58
|
+
"typecheck": "tsc --noEmit"
|
|
59
|
+
}
|
|
60
|
+
}
|