-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.97 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
{
"name": "how-fugu-is-my-browser",
"version": "1.0.0",
"description": "A test app to determine what Project Fugu 🐡 APIs your browser supports.",
"scripts": {
"start": "npm run dev",
"dev": "vite --host",
"build": "vite build && shx echo \"howfuguismybrowser.dev\" > docs/CNAME && shx cp ./sw.js ./docs/ && npm run license && git add docs/",
"license": "node ./scripts/license.mjs",
"serve": "vite preview",
"https-preview": "serve docs",
"lint": "npm run lint:js && npm run lint:css && npm run lint:esm",
"lint:esm": "npx find-unused-exports",
"lint:js": "npx eslint . --fix --ignore-pattern docs/",
"lint:css": "npx stylelint \"**/*.css\" --fix",
"fix": "npx prettier . --write",
"deploy": "npm run lint && npm run fix && npm run build && git commit -a -m \"Deploy\" && git push",
"oculus": "ovr-platform-util create-pwa -o output.apk --android-sdk ~/bin/android-10 --manifest-content-file manifest.webmanifest --package-name dev.howfuguismybrowser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomayac/how-fugu-is-my-browser.git"
},
"keywords": [
"project-fugu"
],
"author": "Thomas Steiner ([email protected])",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tomayac/how-fugu-is-my-browser/issues"
},
"homepage": "https://github.com/tomayac/how-fugu-is-my-browser#readme",
"type": "module",
"devDependencies": {
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"eslint": "^9.8.0",
"eslint-config-google-jsdocless": "^0.14.1",
"eslint-config-prettier": "^9.1.0",
"find-unused-exports": "^6.0.0",
"fugu-api-data": "^1.19.1",
"html2canvas": "^1.4.1",
"http-server": "^14.1.1",
"https-localhost": "^4.7.1",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"vite": "^5.3.5"
},
"dependencies": {
"@fnando/sparkline": "^0.3.10"
}
}