-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 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
36
37
38
39
40
{
"name": "@open-wc/context-protocol",
"version": "0.0.3",
"description": "A Lit compatible implementation of the context-protocol community protocol",
"type": "module",
"scripts": {
"build": "tsc",
"test": "npm run test:types && npm run test:e2e",
"test:e2e": "web-test-runner",
"test:types": "tsc --noEmit"
},
"files": ["./dist/"],
"module": "./dist/index.js",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"repository": {
"url": "https://github.com/open-wc/context-protocol"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@open-wc/dedupe-mixin": "^1.4.0",
"@open-wc/scoped-elements": "^3.0.5",
"@open-wc/testing": "^4.0.0",
"@types/mocha": "^10.0.6",
"@web/dev-server-esbuild": "^1.0.2",
"@web/dev-server-polyfill": "^1.0.4",
"@web/test-runner": "^0.18.0",
"@web/test-runner-playwright": "^0.11.0",
"chai": "^5.1.0",
"lit": "^3.1.2",
"mocha": "^10.4.0",
"typescript": "^5.3.3"
}
}