-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "anan-as",
"version": "1.0.0",
"main": "./bin/index.js",
"scripts": {
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"asbuild:debug": "asc assembly/index.ts --target debug",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild:test": "asc assembly/test-run.ts --target test",
"cp-build": "rm -rf ./web/build; cp -r ./build ./web/",
"build": "npm run asbuild && npm run cp-build",
"update-version": "node ./web/bump-version.js $GITHUB_SHA",
"format": "biome format --write",
"lint": "biome lint --write; biome check --write",
"qa": "biome ci",
"qa-fix": "npm run format; npm run lint",
"prestart": "npm run build",
"preweb": "npm run build",
"web": "npx live-server ./web",
"start": "node ./bin/index.js",
"fuzz": "npx jazzer --sync ./bin/fuzz",
"test": "npm run asbuild:test && node ./bin/test.js"
},
"keywords": [],
"author": "Fluffy Labs",
"license": "MPL-2.0",
"description": "",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@jazzer.js/core": "^2.1.0",
"@typeberry/pvm-debugger-adapter": "0.1.0-8456204",
"assemblyscript": "^0.27.32"
},
"type": "module",
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
},
"dependencies": {
"json-bigint-patch": "^0.0.8"
}
}