-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
99 lines (99 loc) · 3.24 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
95
96
97
98
99
{
"name": "avm-debug-adapter",
"version": "0.3.0",
"description": "Algorand AVM transaction and smart contract debugger using the Debugger Adapter Protocol",
"author": {
"name": "Algorand, llc"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/algorand/avm-debugger.git"
},
"bugs": {
"url": "https://github.com/algorand/avm-debugger/issues"
},
"main": "out/src/common/index.js",
"types": "out/src/common/index.d.ts",
"typesVersions": {
"*": {
".": [
"out/src/common/index.d.ts"
],
"*": [
"out/src/common/index.d.ts"
],
"node": [
"out/src/node/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./out/src/common/index.d.ts",
"default": "./out/src/common/index.js"
},
"./node": {
"types": "./out/src/node/index.d.ts",
"default": "./out/src/node/index.js"
}
},
"bin": {
"avm-debug-adapter": "./out/src/cli.js"
},
"files": [
"out/src",
"src"
],
"scripts": {
"prepare": "npm run compile",
"compile": "shx rm -rf out && tsc -p ./",
"lint": "eslint src --ext ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check-format": "prettier . --check",
"format": "prettier . --write",
"extension:esbuild-base": "esbuild ./extension/src/extension.ts --bundle --tsconfig=./tsconfig.json --external:vscode --format=cjs --platform=node --outfile=extension/dist/extension.js",
"extension:watch": "npm run -S extension:esbuild-base -- --sourcemap --sources-content=false --watch",
"extension:esbuild-web": "esbuild ./extension/src/web-extension.ts --bundle --tsconfig=./tsconfig.json --external:vscode --format=cjs --platform=browser --outfile=extension/dist/web-extension.js",
"extension:watch-web": "npm run -S extension:esbuild-web -- --sourcemap --sources-content=false --watch",
"extension:build": "npm run -S extension:esbuild-base -- --sourcemap --sources-content=false && npm run -S extension:esbuild-web -- --sourcemap --sources-content=false",
"extension:package": "vsce package",
"extension:publish": "vsce publish",
"extension:publish-pre-release": "vsce publish --pre-release",
"test": "ts-mocha -p tsconfig.json 'tests/**/*test.ts' --timeout 30s --diff false",
"test:coverage": "nyc npm run test",
"pre-commit": "npm run lint && npm run typecheck && npm run format"
},
"dependencies": {
"@vscode/debugadapter": "^1.64.0",
"algosdk": "^3.0.0",
"await-notify": "^1.0.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.196",
"@types/mocha": "^9.1.0",
"@types/node": "^14.14.37",
"@types/vscode": "^1.66.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/debugadapter-testsupport": "^1.64.0",
"@vscode/vsce": "^2.22.0",
"esbuild": "^0.14.29",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"events": "^3.3.0",
"glob": "^7.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"shx": "^0.3.4",
"ts-mocha": "^10.0.0",
"typescript": "^4.6.3",
"url": "^0.11.3"
}
}