-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "floating-calculator",
"version": "1.0.0",
"description": "A floating calculator anywhere you need it",
"homepage": "https://justiceo.github.io/floating-calculator",
"scripts": {
"build": "node tools/esbuild.js build",
"test": "node tools/esbuild.js test",
"watch": "node tools/esbuild.js watch",
"start": "node tools/esbuild.js start",
"start:firefox": "node tools/esbuild.js start --browser=firefox",
"format": "npx prettier . --write",
"generateIcons": "node tools/esbuild.js image --icons",
"updateTranslations": "node tools/translateMessages.js"
},
"author": "Justice Ogbonna",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/justiceo/floating-calculator"
},
"engines" : {
"npm" : ">=9.6.7",
"node" : ">=18.17.1"
},
"keywords": [
"calculator",
"scientific",
"floating",
"maths",
"mathematics",
"mathjs",
"chrome",
"firefox",
"opera",
"safari",
"addon",
"extension"
],
"devDependencies": {
"@types/chrome": "^0.0.204",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.11.14",
"@types/puppeteer": "^7.0.4",
"esbuild": "0.16.4",
"glob": "^10.3.10",
"google-translate-api-x": "^10.5.2",
"jasmine": "^4.5.0",
"jimp": "^0.16.2",
"jsdom": "^24.0.0",
"puppeteer": "19.4.0"
},
"dependencies": {
"@floating-ui/dom": "^1.2.0",
"@google-cloud/aiplatform": "^3.10.1",
"@sentry/browser": "^7.36.0",
"@webcomponents/custom-elements": "^1.5.1",
"bootstrap": "^5.3.2",
"mathjs": "^12.3.0"
}
}