-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (72 loc) · 2.63 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
69
70
71
72
73
{
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"name": "@masx200/pi-calculation-multithreading",
"version": "1.0.3",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/masx200/Pi-calculation-multithreading.git"
},
"author": "masx200 <34191203+masx200@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"rollup": "rollup -c rollup.config.js",
"precommit": "npm run format ||node -v",
"dev": "vite serve --config vite.config.ts",
"build": "npm run rollup && vite build --config vite.config.ts",
"format": "npx prettier --write *.json *.md */*.js */*.html *.ts */*.ts *.js"
},
"devDependencies": {
"@babel/code-frame": "^7.18.6",
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/babel__code-frame": "^7.0.3",
"@types/ejs": "^3.1.1",
"@types/eslint": "^8.4.5",
"@types/html-minifier-terser": "^6.1.0",
"@types/node": "^18.6.3",
"ejs": "^3.1.8",
"prettier": "^2.7.1",
"rollup": "^2.77.2",
"rollup-external-modules": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"terser": "^5.14.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^3.0.4",
"vite-plugin-checker": "^0.4.9",
"vite-plugin-html": "^3.2.0",
"vite-plugin-pwa": "^0.12.3"
},
"description": "Pi calculation, multithreading, based on large number frames decimal.js and webworker 圆周率计算,多线程,基于大数框架 decimal.js 和 webworker 圆周率计算-可设置圆周率位数-可选择线程个数-多线程大数框架 webworker 输出 useragent 大数框架",
"bugs": {
"url": "https://github.com/masx200/Pi-calculation-multithreading/issues"
},
"homepage": "https://github.com/masx200/Pi-calculation-multithreading#readme",
"keywords": [],
"dependencies": {
"big-integer": "^1.6.51",
"decimal.js": "^10.3.1"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.cjs"
],
"resolutions": {
"minimist": "1.2.6",
"async": "3.2.3",
"terser": "^5.14.2",
"ejs": "3.1.8"
}
}