-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "puya-ts-demo",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"postinstall": "patch-package",
"build:puya": "puya-ts build contracts",
"build:tealscript": "tealscript tealscript_contracts/kitchen-sink-tealscript.algo.ts tealscript_contracts/artifacts",
"test:jest": "tsc && node --experimental-vm-modules node_modules/jest/bin/jest",
"test:vitest": "vitest run"
},
"type": "module",
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@algorandfoundation/algorand-typescript": "^1.0.0-beta.16",
"@algorandfoundation/algorand-typescript-testing": "^1.0.0-beta.19",
"@algorandfoundation/puya-ts": "^1.0.0-beta.23",
"@algorandfoundation/tealscript": "0.105.5",
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "^12.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.10.6",
"@types/node-fetch": "^2.6.12",
"jest": "^29.7.0",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2"
},
"dependencies": {
"vitest": "^2.1.2"
}
}