-
Notifications
You must be signed in to change notification settings - Fork 405
/
package.json
74 lines (74 loc) · 2.41 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
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
{
"name": "quicklink",
"version": "2.3.0",
"description": "Faster subsequent page-loads by prefetching in-viewport links during idle time",
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChromeLabs/quicklink.git"
},
"homepage": "https://getquick.link/",
"bugs": {
"url": "https://github.com/GoogleChromeLabs/quicklink/issues"
},
"author": "addyosmani <addyosmani@gmail.com>",
"license": "Apache-2.0",
"main": "dist/quicklink.js",
"module": "dist/quicklink.mjs",
"umd:main": "dist/quicklink.umd.js",
"unpkg": "dist/quicklink.umd.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint --report-unused-disable-directives --ext .js,.mjs .",
"lint-fix": "npm run lint -- --fix",
"fix": "npm run lint -- --fix",
"start": "sirv --dev --no-clear --no-logs --host 127.0.0.1 --port 8080",
"uvu": "uvu test",
"test": "npm-run-all build-all --parallel --race start uvu",
"build": "microbundle src/index.mjs --no-sourcemap --external none",
"build-plugin": "microbundle src/chunks.mjs --no-sourcemap --external none -o dist/react",
"build-react-chunks": "babel src/react-chunks.js --out-file dist/react/hoc.js",
"build-all": "npm-run-all --parallel build build-plugin build-react-chunks",
"prepublishonly": "npm run build-all",
"size": "size-limit",
"changelog": "npm run conventional-changelog -i CHANGELOG.md -s -r 0",
"release": "cross-env-shell \"npm run build-all && git commit -am $npm_package_version && git tag $npm_package_version && git push --follow-tags\""
},
"keywords": [
"prefetch",
"performance",
"fetch",
"intersectionobserver",
"background",
"speed"
],
"dependencies": {
"route-manifest": "^1.0.0",
"throttles": "^1.0.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@size-limit/file": "^11.1.4",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.35.0",
"microbundle": "0.15.1",
"npm-run-all2": "^6.2.2",
"puppeteer": "^22.13.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"sirv-cli": "^2.0.2",
"size-limit": "^11.1.4",
"uvu": "^0.5.6"
}
}