-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 2 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
{
"name": "@safeheron/mpc-wasm-sdk",
"version": "0.5.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint:tsc": "tsc --noemit --project ./tsconfig.json",
"eslint": "eslint --quiet --color src/*.ts",
"build": "NODE_ENV=production webpack --stats --progress",
"build:watch": "NODE_ENV=development webpack --stats --progress",
"preview": "browser-sync start --config browser-sync-config.js",
"serve": "concurrently 'npm:build:watch' 'npm:preview'"
},
"files": [
"lib/"
],
"author": "Yann<yanjie002@gmail.com>",
"dependencies": {
"@babel/preset-typescript": "^7.18.6",
"babel-loader": "^9.1.2",
"core-js": "^3.27.2",
"uuid": "^9.0.0",
"webassembly-loader": "^1.1.0",
"webpack-dev-server": "^4.13.1"
},
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"@swc/core": "^1.3.90",
"@types/jest": "^29.2.5",
"@types/node": "^20.2.5",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"browser-sync": "^2.29.3",
"buffer": "^6.0.3",
"bundle-declarations-webpack-plugin": "^4.0.1",
"concurrently": "^8.2.0",
"copy-webpack-plugin": "^11.0.0",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-inline-script-webpack-plugin": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.7.0",
"parcel": "^2.8.3",
"prettier": "^2.8.8",
"process": "^0.11.10",
"rimraf": "^5.0.0",
"speed-measure-webpack-plugin": "^1.5.0",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"type-fest": "^3.11.1",
"typescript": "^4.9.4",
"vconsole": "^3.15.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}