-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 941 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 941 Bytes
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
{
"name": "toolgood.algorithm",
"version": "6.2",
"description": "ToolGood Algorithm Engine for JavaScript",
"type": "module",
"main": "dist/toolgood.algorithm.js",
"browser": "dist/toolgood.algorithm.min.js",
"scripts": {
"build": "webpack",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production"
},
"keywords": [
"algorithm",
"calculator",
"expression",
"formula"
],
"author": "ToolGood",
"license": "ToolGood Noncommercial License 1.0.0",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/node": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.22.5",
"babel-loader": "^9.1.2",
"core-js": "^3.48.0",
"terser-webpack-plugin": "^5.3.16",
"webpack": "^5.88.0",
"webpack-bundle-analyzer": "^5.2.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"crypto-js": "^4.2.0"
}
}