-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
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
62
63
64
65
66
{
"name": "lit-modal-portal",
"version": "0.7.1",
"description": "A custom portal directive for the Lit framework to render content elsewhere in the DOM",
"keywords": [
"Lit",
"modal",
"portal",
"custom element",
"directive"
],
"homepage": "https://github.com/nicholas-wilcox/lit-modal-portal#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nicholas-wilcox/lit-modal-portal.git"
},
"bugs": {
"url": "https://github.com/nicholas-wilcox/lit-modal-portal/issues"
},
"license": "MIT",
"author": "Nicholas Wilcox",
"files": [
"/README.md",
"/CHANGELOG.md",
"/LICENSE.txt",
"/index.{js,js.map,d.ts,d.ts.map}",
"/portal.{js,js.map,d.ts,d.ts.map}"
],
"main": "./index.js",
"type": "module",
"scripts": {
"build": "npm run clean && npm run tsc && npm run esbuild",
"build:watch": "concurrently \"npm:tsc:watch\" \"npm:esbuild:watch\"",
"clean": "rimraf --glob ./index.* ./portal.*",
"dev": "wds --watch",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"esbuild": "node esbuild.config.js",
"esbuild:watch": "node esbuild.config.js -w",
"lint": "prettier -w .",
"tsc": "tsc",
"tsc:watch": "tsc -w",
"test": "web-test-runner --puppeteer"
},
"devDependencies": {
"@open-wc/testing": "^4.0.0",
"@types/mocha": "^10.0.6",
"@web/dev-server": "^0.4.3",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.20.0",
"@web/test-runner-puppeteer": "^0.18.0",
"concurrently": "^9.1.2",
"esbuild": "^0.25.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"ts-lit-plugin": "^2.0.2",
"typedoc": "^0.27.7",
"typescript": "^5.7.3",
"yargs-parser": "^21.0.1"
},
"peerDependencies": {
"lit": ">=2"
},
"types": "./index.d.ts"
}