-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 990 Bytes
/
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
{
"name": "casper-litmus-worker",
"version": "0.0.2",
"description": "Service worker for a light client on Casper Network",
"types": "dist/service-worker.d.ts",
"main": "dist/service-worker.js",
"module": "dist/service-worker.js",
"exports": {
".": {
"import": "./dist/service-worker.js",
"require": "./dist/service-worker.js"
}
},
"scripts": {
"build": "tsc && webpack --mode=production",
"test": "jest"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"casper-litmus-wasm": "^0.1.0",
"dexie": "^4.0.4",
"dotenv-webpack": "^8.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/webpack-env": "^1.18.4",
"fake-indexeddb": "^5.0.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}