-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "add-to-homescreen",
"version": "1.0.0",
"description": "A simple JavaScript library to show a popup encouraging users to add a website to their home screen.",
"main": "dist/index.js",
"scripts": {
"build-dev": "NODE_ENV=development npm run build",
"build": "bun ./scripts/build.ts && webpack && bun ./scripts/postBuild.ts",
"pack": "webpack",
"start": "http-server dist -c-1 -p 8081",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philfung/add-to-homescreen.git"
},
"keywords": [
"homescreen",
"add",
"popup"
],
"author": "Your Name <your@email.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/philfung/add-to-homescreen/issues"
},
"homepage": "https://github.com/philfung/add-to-homescreen#readme",
"dependencies": {
"add-to-homescreen": "^3.2.6",
"bun": "^1.1.29",
"copy-webpack-plugin": "^11.0.0"
},
"devDependencies": {
"css-loader": "^6.6.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.4.8",
"ts-loader": "^9.5.1",
"typescript": "^5.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0"
}
}