-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
94 lines (94 loc) · 3.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "azle",
"version": "0.25.0-dev",
"description": "TypeScript and JavaScript CDK for the Internet Computer",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "if [ \"$npm_config_fix\" ]; then eslint . --ext .js,.ts --cache --fix; else eslint . --ext .js,.ts --cache; fi",
"prepare": "husky install",
"install": "cd dfx_extension && ./install.sh",
"test": "test/test.sh"
},
"type": "module",
"bin": {
"azle": "./src/build/index.ts",
"cuzz": "./node_modules/.bin/cuzz",
"tsc": "./node_modules/.bin/tsc"
},
"main": "./src/lib/stable/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/demergent-labs/azle.git"
},
"keywords": [],
"author": "AZLE token holders (nlhft-2iaaa-aaaae-qaaua-cai)",
"license": "MIT",
"bugs": {
"url": "https://github.com/demergent-labs/azle/issues"
},
"homepage": "https://github.com/demergent-labs/azle#readme",
"dependencies": {
"@dfinity/agent": "^2.1.3",
"@dfinity/identity-secp256k1": "^2.1.3",
"@types/uuid": "^9.0.4",
"binaryen": "^116.0.0",
"buffer": "^6.0.3",
"chokidar": "^3.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"crypto-browserify": "^3.12.0",
"cuzz": "github:demergent-labs/cuzz#70f95363c64674ec2cf19b9eccfc1a773c3bf28f",
"deep-is": "^0.1.4",
"esbuild": "^0.23.0",
"esbuild-plugin-tsc": "^0.4.0",
"ethers": "^6.13.2",
"fs-extra": "^11.2.0",
"glob": "^10.3.15",
"hash-of-directory": "^1.0.1",
"http-message-parser": "^0.0.34",
"intl": "^1.2.5",
"js-sha256": "0.9.0",
"jssha": "^3.3.1",
"net": "^1.0.2",
"pako": "^2.1.0",
"reflect-metadata": "^0.2.2",
"repl": "^0.1.3",
"text-encoding": "0.7.0",
"tsx": "^4.15.7",
"typescript": "^5.2.2",
"uuid": "^9.0.1",
"wasmedge_quickjs": "github:demergent-labs/wasmedge-quickjs#3b3b0ee91248ccf9cd954ffafbac7e024648af92"
},
"devDependencies": {
"@dfinity/identity": "^2.1.3",
"@types/deep-equal": "^1.0.4",
"@types/fs-extra": "9.0.13",
"@types/pako": "^2.0.3",
"@types/text-encoding": "^0.0.39",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"deep-equal": "^2.2.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fast-check": "^3.13.1",
"husky": "7.0.4",
"jest": "^29.7.0",
"lint-staged": "12.3.7",
"prettier": "^3.0.3",
"puppeteer": "^22.2.0",
"ts-jest": "^29.1.4"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"**/*": "prettier --write --ignore-unknown"
},
"azle": {
"globalDependencies": {
"wasi2ic": "https://github.com/wasm-forge/wasi2ic?rev=806c3558aad24224852a9582f018178402cb3679#806c3558",
"node": "20.11.0",
"rust": "1.80.1",
"dfx": "0.22.0"
}
}
}