初始化

This commit is contained in:
lblblong
2021-07-26 15:29:22 +08:00
commit b643682ebd
58 changed files with 14164 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "preload",
"version": "0.1.0",
"private": true,
"homepage": ".",
"main": "./dist/index.js",
"scripts": {
"serve": "parcel src/index.ts --out-dir ../build-preload --target node --bundle-node-modules",
"build": "rm -rf ../build-preload && parcel build src/index.ts --out-dir ../build-preload --target node --bundle-node-modules --no-source-maps"
},
"dependencies": {
"localtunnel": "^2.0.1",
"tslib": "^2.1.0"
},
"devDependencies": {
"@types/localtunnel": "^2.0.1"
}
}