-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 933 Bytes
/
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
36
37
38
{
"name": "lit-plasmic",
"description": "Plasmic integration as web component",
"version": "0.4.0",
"keywords": [
"lit",
"plasmic",
"web-component"
],
"repository": {
"type": "git",
"url": "https://github.com/andrewlevada/lit-plasmic.git"
},
"homepage": "https://github.com/andrewlevada/lit-plasmic",
"license": "Unlicense",
"types": "index.d.ts",
"type": "module",
"main": "index.js",
"module": "index.js",
"exports": {
".": "./index.js",
"./index.js": "./index.js",
"./index.ts": "./index.ts"
},
"scripts": {
"build": "tsc --emitDeclarationOnly && esbuild index.ts --bundle --minify --sourcemap --outfile=index.js",
"examples": "http-server -o ./examples/simple.html"
},
"dependencies": {
"lit": "2.x"
},
"devDependencies": {
"@types/node": "^18.11.9",
"esbuild": "^0.15.14",
"http-server": "^14.1.1",
"typescript": "^4.9.3"
}
}