-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1009 Bytes
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
{
"name": "meh",
"version": "0.0.1",
"description": "Stencil Component Starter",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/meh/meh.esm.js",
"exports": {
".": {
"import": "./dist/meh/meh.esm.js",
"require": "./dist/meh/meh.cjs.js"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
}
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"watch": "stencil build --dev --watch",
"generate": "stencil generate"
},
"devDependencies": {
"@stencil/core": "^4.27.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"puppeteer": "^24.3.0"
},
"dependencies": {
"jwt-decode": "^4.0.0"
}
}