-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.31 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
75
76
77
78
79
80
81
{
"name": "link-roamer",
"version": "1.2.0",
"description": "A browser extension for gathering, organizing, and inspecting all the links on a web page.",
"scripts": {
"release": "cross-env NODE_ENV=production rollup -c",
"safari": "xcrun safari-web-extension-converter ./dist/v2-manifest",
"server": "npx functions-framework --target fetchStatuses --source dist/api",
"start": "rollup -c -w",
"watch": "npm-watch server"
},
"watch": {
"server": "dist/api/*.js"
},
"type": "module",
"keywords": [
"chrome-extension",
"web-extension",
"typescript",
"react",
"rollup"
],
"engines": {
"node": ">=16.0.0"
},
"author": "Ross Moody <@_rossmoody>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rossmoody/link-roamer/issues"
},
"homepage": "https://github.com/rossmoody/link-roamer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rossmoody/link-roamer.git"
},
"dependencies": {
"@chakra-ui/react": "^1.8.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"framer-motion": "^6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-focus-lock": "^2.8.1",
"user-agents": "^1.0.996"
},
"devDependencies": {
"@google-cloud/functions-framework": "^3.1.0",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.1.0",
"@types/chrome": "^0.0.180",
"@types/express": "^4.17.13",
"@types/firefox-webext-browser": "^94.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/user-agents": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"cross-env": "^7.0.3",
"eslint": "^7.16.0",
"eslint-plugin-react": "^7.21.5",
"node-fetch": "^3.2.3",
"npm-watch": "^0.11.0",
"rollup": "^2.56.3",
"rollup-plugin-chrome-extension": "^3.6.1",
"rollup-plugin-empty-dir": "^1.0.5",
"rollup-plugin-zip": "^1.0.3",
"tslib": "^2.0.3",
"typescript": "^4.5.0",
"webextension-polyfill": "^0.7.0"
},
"prettier": {
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 80
}
}