-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 807 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 807 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
36
37
38
{
"name": "@archethicjs/ae-contract-as",
"version": "1.0.14",
"description": "",
"bin": {
"aewasm": "bin/aewasm.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm install --prefix transform && npm run build --prefix transform",
"postpublish": "rm -rf transform/dist"
},
"dependencies": {
"@archethicjs/sdk": "2.0.0",
"commander": "^12.1.0",
"json-as": "^0.9.21",
"visitor-as": "^0.11.4"
},
"type": "module",
"types": "./assembly/index.ts",
"devDependencies": {
"jest": "^29.7.0"
},
"exports": {
".": {
"default": "./index.ts",
"types": "./index.ts"
},
"./config": {
"default": "./asconfig.base.json"
},
"./transform": {
"default": "./transform"
}
}
}