forked from sijakret/lit-shared-state
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.84 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
{
"name": "lit-shared-state",
"version": "0.2.1",
"description": "Reactive shared state management for LitElement",
"main": "dist/lit-shared-state.js",
"module": "dist/lit-shared-state.js",
"repository": {
"url": "https://github.com/sijakret/lit-shared-state"
},
"homepage": "https://sijakret.github.io/lit-shared-state",
"type": "module",
"typings": "dist/lit-shared-state.d.ts",
"scripts": {
"test": "wtr --config web-test-runner.config.js test/**/*.test.ts --node-resolve --coverage",
"build": "tsc && esbuild dist/lit-shared-state.js --minify --sourcemap --outfile=dist/lit-shared-state.min.js",
"doc:build": "typedoc src/lit-shared-state.ts --out doc/api&&npx rimraf doc/dist&&npx copyfiles src/lit-shared-state.ts doc --flat&&rollup --config doc/rollup.config.build.js",
"doc:serve": "npx copyfiles src/lit-shared-state.ts doc --flat&&rollup --config doc/rollup.config.dev.js --watch",
"gzipped-size": "gzip -c dist/lit-shared-state.min.js | wc -c"
},
"author": "Jan Kretschmer",
"license": "MIT",
"peerDependencies": {
"lit": "^2.0.2"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@jackfranklin/rollup-plugin-markdown": "^0.3.0",
"@open-wc/testing": "^3.0.3",
"@rollup/plugin-node-resolve": "^13.1.2",
"@rollup/plugin-replace": "^3.0.1",
"@types/node": "^18.15.11",
"@web/dev-server": "^0.1.29",
"@web/dev-server-esbuild": "^0.2.16",
"@web/rollup-plugin-html": "^1.11.1",
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
"@web/test-runner": "^0.15.3",
"highlight.js": "^11.3.1",
"playground-elements": "^0.14.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-esbuild": "^4.8.2",
"rollup-plugin-serve": "^1.1.0",
"showdown-highlight": "^2.1.8",
"tslib": "^2.3.1",
"typedoc": "^0.24.4",
"typescript": "^4.5.4"
}
}