-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "sync-web-storage",
"version": "0.1.4",
"description": "Cross domain storage",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/usagi-f/sync-web-storage",
"repository": {
"type": "git",
"url": "https://github.com/usagi-f/sync-web-storage.git"
},
"author": "@usagi-f",
"license": "Apache-2.0",
"keywords": [
"local",
"storage",
"cross",
"domain"
],
"scripts": {
"build": "webpack src/index.ts",
"playground:build:hub": "esbuild --bundle playground/hub/src/index.ts --loader:.ts=ts --outdir=playground/hub/dist",
"playground:build:alice": "esbuild --bundle playground/alice/src/index.ts --loader:.ts=ts --outdir=playground/alice/dist",
"playground:serve:hub": "serve playground/hub -p 3001",
"playground:serve:alice": "serve playground/alice -p 3002"
},
"dependencies": {
"uuid": "^8.2.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@types/uuid": "^8.0.0",
"babel-loader": "^8.1.0",
"esbuild": "^0.6.5",
"serve": "^11.3.2",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}