-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.26 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.26 KB
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
{
"name": "@algorandfoundation/algorand-typescript-testing",
"version": "1.0.0",
"description": "A library which allows you to execute Algorand TypeScript code locally under a test context either emulating or mocking AVM behaviour.",
"private": false,
"main": "index.js",
"types": "src/index.ts",
"scripts": {
"audit": "better-npm-audit audit",
"format": "prettier --write .",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" \"examples/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" \"examples/**/*.ts\" --fix",
"build": "run-s build:*",
"build:0-clean": "rimraf dist coverage",
"build:1-lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --max-warnings 0",
"build:2-check-types": "tsc -p tsconfig.json",
"build:3-build": "rollup -c --configPlugin typescript",
"build:4-copy-pkg-json": "tstk copy-package-json -c",
"build:5-copy-readme": "shx cp ./README.md ./dist",
"watch": "rollup -c -w --configPlugin typescript",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter junit --outputFile test-results.xml",
"script:documentation": "typedoc",
"script:build-examples": "rollup --config examples/rollup.config.ts --configPlugin typescript",
"script:compile-examples": "puya-ts --out-dir data ./examples/*/ --puya-path=/home/parallels/.local/bin/puya",
"script:refresh-test-artifacts": "puya-ts --out-dir data --output-awst --output-awst-json ./tests/artifacts/*/ --puya-path=/home/parallels/.local/bin/puya"
},
"devDependencies": {
"@algorandfoundation/algokit-utils": "^9.0.0",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@dotenvx/dotenvx": "^1.45.1",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.23.0",
"@makerx/eslint-config": "4.2.0",
"@makerx/prettier-config": "2.0.1",
"@makerx/ts-toolkit": "^4.0.0-beta.24",
"@rollup/plugin-commonjs": "28.0.3",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node20": "20.1.5",
"@types/elliptic": "^6.4.18",
"@types/node": "22.13.14",
"@typescript-eslint/eslint-plugin": "8.49.0",
"@typescript-eslint/parser": "8.49.0",
"@vitest/coverage-v8": "3.2.4",
"better-npm-audit": "3.11.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "9.31.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"glob": "^11.1.0",
"npm-run-all2": "^8.0.4",
"polytype": "^0.17.0",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"rollup": "^4.38.0",
"semantic-release": "^24.2.9",
"shx": "^0.4.0",
"tsx": "4.19.3",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typedoc-plugin-missing-exports": "^4.0.0",
"typescript": "^5.9.3",
"upath": "^2.0.1",
"vitest": "3.2.4"
},
"dependencies": {
"@algorandfoundation/algorand-typescript": "1.2.0-beta.19",
"@algorandfoundation/puya-ts": "1.2.0-beta.19",
"elliptic": "^6.6.1",
"js-sha256": "^0.11.0",
"js-sha3": "^0.9.3",
"js-sha512": "^0.9.0",
"tweetnacl": "^1.0.3",
"upath": "^2.0.1"
},
"overrides": {
"cross-spawn": "7.0.6",
"esbuild": "0.25.0"
}
}