-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 KB
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": "calcularjs",
"version": "1.1.8",
"main": "dist/calcular.js",
"module": "dist/calcular.js",
"browser": "dist/browser/calcular.js",
"scripts": {
"build:esm": "tsc --module esnext --outDir dist --target es6 --declaration",
"build:browser": "rollup -c",
"build": "npm run build:esm && npm run build:browser",
"clean": "rm -rf dist"
},
"exports": {
"import": "./dist/calcular.js",
"browser": "./dist/browser/calcular.js"
},
"description": "A versatile JavaScript module that supports CJS, ESM, and browser environments.",
"files": [
"dist/",
"LICENSE",
"package.json",
"README.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"CHANGELOG.md"
],
"homepage": "https://www.gloomystore.com",
"license": "GPL-3.0",
"keywords": [
"calculator",
"math",
"arithmetic",
"expression evaluator",
"JavaScript",
"TypeScript",
"calculation",
"math parser",
"numeric operations",
"math library",
"ESM",
"CJS",
"modular math",
"custom calculator",
"formula evaluation",
"math expression",
"number parser",
"math functions",
"calculation engine",
"math utilities"
],
"author": "GloomyStore",
"copyright": "Copyright © 2024 gloomystore",
"type": "module",
"types": "dist/index.d.ts",
"devDependencies": {
"typescript": "^4.9.5",
"rollup": "^3.0.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-obfuscator": "^2.0.3"
}
}