-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.86 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
{
"name": "aqua-compiler",
"description": "An expressive high level language for the Algorand blockchain that compiles to TEAL code.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node ./src/cli.ts exec examples/test.aqua",
"start:file": "ts-node ./src/cli.ts examples/test.aqua > examples/test.teal",
"start1": "ts-node ./src/cli.ts exec examples/function.aqua",
"start2": "ts-node ./src/cli.ts exec examples/function-with-args.aqua",
"start:counter": "ts-node ./src/cli.ts examples/counter.aqua",
"start:template": "ts-node ./src/cli.ts examples/template.aqua",
"start:repl": "ts-node ./src/cli.ts",
"start:ast": "ts-node ./src/cli.ts ast examples/test.aqua",
"s": "npm run start",
"start:dev": "nodemon",
"sd": "npm run start:dev",
"c": "npm run clean",
"clean": "rm -rf dist build/* tsconfig.tsbuildinfo",
"b": "npm run build",
"build": "tsc --incremental",
"bw": "npm run build:watch",
"build:watch": "tsc --incremental --watch",
"prepublishOnly": "npm test && npm run clean && npm run pack-web",
"t": "npm run test",
"test": "jest --runInBand",
"tw": "npm run test:watch",
"test:watch": "jest --watch --runInBand",
"build-win": "nexe build/cli.js -t windows-x64-14.15.3 -n aqua",
"build-mac": "nexe build/cli.js -t mac-x64-14.15.3 -n aqua-mac",
"build-linux": "nexe build/cli.js -t linux-x64-14.15.3 -n aqua-linux",
"build-all": "npm run build-win && npm run build-mac && npm run build-linux",
"build-test": "npm run build && npm run build-win && mv aqua.exe c:\\tools",
"pack-web": "npm run build && webpack --config webpack.config.js && npm run bundle-typedefs",
"bundle-typedefs": "dts-bundle --name aqua-compiler --main build/index.d.ts --baseDir = build --out ../dist/index.d.ts"
},
"bin": {
"aqua": "./bin/cli"
},
"keywords": [],
"author": "ashley@codecapers.com.au",
"license": "MIT",
"dependencies": {
"@nodelib/fs.walk": "^1.2.8",
"color-json": "^2.0.1",
"lodash.clonedeep": "^4.5.0",
"minimist": "^1.2.5",
"pegjs": "^0.10.0",
"sha3": "^2.1.4",
"teal-interpreter": "^0.0.39",
"tweetnacl-ts": "^1.0.3",
"yaml": "^1.10.2",
"zod": "^1.10.2"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^14.17.18",
"@types/superagent": "^4.1.13",
"@types/webpack-env": "^1.17.0",
"dedent": "^0.7.0",
"dts-bundle": "^0.7.3",
"fast-glob": "^3.2.7",
"fs-extra": "^10.1.0",
"jest": "^27.2.1",
"nexe": "^4.0.0-beta.19",
"nodemon": "^2.0.12",
"source-map-support": "0.5.20",
"ts-jest": "^27.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}