-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "clvm",
"version": "3.0.0",
"author": "ChiaMineJP <[email protected]>",
"description": "Javascript implementation of chia lisp",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Chia-Mine/clvm-js.git"
},
"bugs": "https://github.com/Chia-Mine/clvm-js/issues",
"main": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"build": "node pre_build.js && tsc --sourcemap false && webpack",
"test": "jest"
},
"keywords": [
"chia",
"clvm",
"chialisp",
"typescript"
],
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"bls-signatures": "^2.0.3",
"clvm_wasm": "^0.7.0",
"jscrypto": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.10",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.3",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"jest": "^29.7.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"browserslist": [
"edge >= 79",
"firefox >= 68",
"chrome >= 67",
"safari > 14",
"opera >= 54",
"ios_saf >= 14.4",
"android >= 67",
"op_mob >= 48",
"and_chr >= 67",
"and_ff >= 68",
"samsung >= 9.2",
"node >= 10.4.0",
"electron >= 4.0.0"
]
}