forked from as-pect/visitor-as
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 952 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
{
"name": "@btc-vision/visitor-as",
"version": "0.11.5",
"description": "A generic visitor framework for AssemblyScript",
"main": "dist/index.js",
"types": "dist",
"repository": "https://github.com/as-pect/visitor-as",
"author": "Willem Wyndham",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"test": "mocha",
"test:mocha": "npx mocha",
"build": "rimraf dist/ && tsc -p src --skipLibCheck"
},
"peerDependencies": {
"assemblyscript": "^0.27.0",
"@types/node": "^22.12.0"
},
"devDependencies": {
"@assemblyscript/loader": "^0.27.32",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^22.12.0",
"assemblyscript": "^0.27.32",
"chai": "^5.1.2",
"mocha": "^11.1.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"ts-mixer": "^6.0.4"
}
}