-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.87 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.87 KB
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
67
68
69
70
71
72
73
74
75
{
"name": "@mothepro/lit-sets",
"description": "Sets as a lit app",
"author": "Maurice Prosper",
"version": "0.0.21",
"license": "Apache-2.0",
"main": "dist/npm/index.js",
"sideEffects": false,
"type": "module",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"repository": "https://github.com/mothepro/lit-sets",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "signaling-lobby -vvvvp 12345 -s 18000000 -a ' '",
"build:sw:watch": "npm run build:sw -- --watch",
"release": "np",
"deploy": "gh-pages -d demo -v *.ts",
"build": "npm run build:npm && npm run build:esm && npm run build:sw",
"test": "echo 'no tests yet...'",
"pretest": "npm run build:npm",
"prerelease": "npm run build:npm && npm run deploy",
"importmap": "importly --host unpkg < package.json > demo/import-map.json",
"win:importmap": "type package.json | importly --host unpkg > demo/import-map.json",
"html:prod:signaling": "replace \"ws://localhost:12345\" \"wss://ws.parkshade.com:443\" demo/index.html",
"html:dev:signaling": "replace \"wss://ws.parkshade.com:443\" \"ws://localhost:12345\" demo/index.html",
"html:dev:real": "replace \"dev-only type=dev-only-\" \"dev-only type=\" demo/index.html",
"html:dev:shim": "replace \"dev-only type=\" \"dev-only type=dev-only-\" demo/index.html",
"html:prod:real": "replace \"prod-only type=prod-only-\" \"prod-only type=\" demo/index.html",
"html:prod:shim": "replace \"prod-only type=\" \"prod-only type=prod-only-\" demo/index.html",
"predeploy": "npm run html:dev:shim && npm run html:prod:real && npm run html:prod:signaling",
"postdeploy": "npm run html:dev:real && npm run html:prod:shim && npm run html:dev:signaling",
"build:npm": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"build:sw": "tsc demo/sw.ts -t ES2019 --moduleResolution node"
},
"devDependencies": {
"@material/icon-button": "^10.0.0",
"@material/mwc-dialog": "^0.20.0",
"@material/mwc-menu": "^0.20.0",
"@mothepro/emojis": "^1.2.2",
"@mothepro/fancy-p2p": "^0.0.23",
"@mothepro/signaling-lobby": "^0.3.3",
"@types/google.analytics": "^0.0.41",
"@types/mocha": "^8.2.1",
"@types/should-sinon": "^0.0.8",
"@types/ws": "^7.4.0",
"gh-pages": "^3.1.0",
"importly": "^0.1.0-dev.0",
"mocha": "^8.3.0",
"np": "^7.4.0",
"replace": "^1.2.0",
"should": "^13.2.3",
"should-sinon": "^0.0.6",
"sinon": "^9.2.4",
"typescript": "^4.1.5"
},
"dependencies": {
"@material/mwc-button": "^0.20.0",
"@material/mwc-fab": "^0.20.0",
"@material/mwc-icon": "^0.20.0",
"@material/mwc-list": "^0.20.0",
"@mothepro/lit-chart": "^0.0.2",
"@mothepro/lit-clock": "^0.0.4",
"@mothepro/theme-toggle": "^0.0.2",
"lit-confetti": "^0.1.5",
"lit-element": "^2.4.0",
"lit-p2p": "^0.4.9",
"sets-game-engine": "^1.0.5"
}
}