-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 KB
/
package.json
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
{
"name": "@runopencode/stencil-signal",
"version": "0.3.2",
"description": "Integration of @preact/signals-core into Stencil.",
"keywords": [
"stencil",
"preact",
"signals",
"signal",
"reactivity"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"es2015": "dist/es2015/index.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/stencil-component-starter.git"
},
"files": [
"dist/",
"docs/"
],
"scripts": {
"build": "npm run build:es2015 && npm run build:esm && npm run build:cjs",
"build:es2015": "tsc --module es2015 --target es2015 --outDir dist/es2015",
"build:esm": "tsc --module es2015 --target es6 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --target es6 --outDir dist/cjs"
},
"peerDependencies": {
"@preact/signals-core": "^1.5",
"@stencil/core": "^3.0||^4.0"
},
"license": "MIT"
}