-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.36 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
{
"name": "@ma9pie/math",
"version": "1.0.1",
"description": "Simple math utility",
"keywords": [
"simple",
"math",
"calc",
"calculation",
"utility"
],
"author": {
"name": "ma9pie",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ma9pie/math"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watchAll",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/big.js": "^6.2.2",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.7.0",
"next": "^14.1.2",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"big.js": "^6.2.1"
}
}