-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 869 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 869 Bytes
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
{
"name": "@mimicprotocol/lib-ts",
"version": "0.0.1-rc.38",
"license": "GPL-3.0",
"private": false,
"type": "module",
"scripts": {
"build": "asc index.ts -b build/lib.wasm --disableWarning 235 --noEmit --transform json-as/transform",
"test": "asp",
"lint": "eslint . --ignore-pattern 'src/environment.ts' --ignore-pattern 'src/evm.ts' --ignore-pattern 'src/svm.ts' --ignore-pattern 'src/log.ts'"
},
"files": [
"src",
"index.ts",
"constants.ts",
"asconfig.json"
],
"exports": {
".": "./index.ts",
"./constants": "./constants.ts"
},
"devDependencies": {
"@as-pect/cli": "8.1.0",
"assemblyscript": "0.27.36"
},
"dependencies": {
"as-base58": "^0.1.1",
"eslint-config-mimic": "^0.0.3",
"json-as": "1.1.7",
"visitor-as": "0.11.4"
},
"publishConfig": {
"access": "public"
}
}