-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"name": "chromenewtabextension",
"version": "2.0.0.1",
"description": "Auckland Museum collection images on a new Google Chrome tab",
"browserslist": [
"last 2 Baidu version",
"last 2 ChromeAndroid version",
"last 2 iOS version",
"last 2 Chrome version",
"last 2 Firefox version",
"last 2 FirefoxAndroid version",
"last 2 Android version",
"last 2 Opera version",
"last 2 OperaMobile version",
"last 2 Safari version",
"last 2 Samsung version",
"last 2 Edge version",
"last 2 UCAndroid version",
"last 2 kaios version"
],
"scripts": {
"dev": "parcel ./src/index.html --port 3000",
"build": "parcel build --public-url ./ ./src/manifest.json --config @parcel/config-webextension --dist-dir dist ",
"zip": "zip -r ~/Desktop/$npm_package_name-$npm_package_version.zip ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AucklandMuseum/ChromeNewTabExtension.git"
},
"author": "Hugh Lilly",
"license": "MIT",
"bugs": {
"url": "https://github.com/AucklandMuseum/ChromeNewTabExtension/issues"
},
"homepage": "https://github.com/AucklandMuseum/ChromeNewTabExtension#readme",
"devDependencies": {
"parcel": "^2.12.0"
},
"dependencies": {
"@parcel/config-webextension": "^2.12.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"jquery": "^3.7.1"
}
}