generated from MFM-347/RepoLate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.49 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
{
"name": "mathematiqs",
"version": "0.9.2",
"type": "module",
"description": "A simple and easy-to-use Maths library and CLI.",
"main": "./dist/fns.umd.js",
"module": "./dist/fns.esm.js",
"types": "./dist/fns.d.ts",
"files": [
"dist"
],
"exports": {
"types": "./dist/fns.d.ts",
"import": "./dist/fns.es.js",
"require": "./dist/fns.cjs.js"
},
"bin": {
"maths": "dist/cli.es.js"
},
"scripts": {
"build": "tsc && vite build",
"format": "prettier --write .",
"pretest": "npm run build",
"test": "npm unlink -g mathematiqs && npm link",
"prepublishOnly": "npm run build"
},
"keywords": [
"math",
"math-cli",
"calculator",
"typescript",
"math-library",
"cli",
"command-line-tool",
"node-cli",
"math-functions",
"calculation",
"trigonometry",
"square-root",
"factorial",
"calc",
"mfm3478"
],
"dependencies": {
"commander": "^13.1.0"
},
"devDependencies": {
"@types/node": "^18.14.0",
"prettier": "^3.4.2",
"typescript": "^5.2.0",
"vite": "^6.0.11",
"vite-plugin-dts": "^1.7.3"
},
"homepage": "https://github.com/MFM-347/Mathematiqs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MFM-347/Mathematiqs.git"
},
"bugs": {
"url": "https://github.com/MFM-347/Mathematiqs/issues"
},
"author": {
"name": "Farhan Madni",
"url": "https://github.com/mfm-347",
"email": "madnifm347@outlook.com"
},
"license": "MIT"
}