@fluffylabs/anan-as 1.0.0-5213fac → 1.0.0-8e153ff
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +14 -10
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluffylabs/anan-as",
|
|
3
3
|
"description": "AssemblyScript PVM interpreter.",
|
|
4
|
-
"version": "1.0.0-
|
|
5
|
-
"main": "./bin/index.
|
|
4
|
+
"version": "1.0.0-8e153ff",
|
|
5
|
+
"main": "./bin/index.ts",
|
|
6
6
|
"repository": {
|
|
7
7
|
"url": "https://github.com/tomusdrw/anan-as"
|
|
8
8
|
},
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"asbuild:release-mini": "asc assembly/index.ts --uncheckedBehavior=always --target release-mini",
|
|
14
14
|
"asbuild:raw": "asc assembly/index.ts --target raw",
|
|
15
15
|
"asbuild:test": "asc assembly/test-run.ts --target test",
|
|
16
|
-
"build": "npm run asbuild && npm run cp-build",
|
|
16
|
+
"build": "npm run asbuild && npm run asbuild:test && npm run tsbuild && npm run cp-build",
|
|
17
17
|
"cp-build": "rm -rf ./web/build; cp -r ./build ./web/",
|
|
18
18
|
"format": "biome format --write",
|
|
19
|
-
"fuzz": "
|
|
19
|
+
"fuzz": "tsx ./bin/fuzz.ts",
|
|
20
20
|
"lint": "biome lint --write; biome check --write",
|
|
21
21
|
"prestart": "npm run build",
|
|
22
22
|
"pretest:w3f": "npm run build",
|
|
@@ -24,11 +24,12 @@
|
|
|
24
24
|
"preweb": "npm run build",
|
|
25
25
|
"qa": "biome ci",
|
|
26
26
|
"qa-fix": "npm run format; npm run lint",
|
|
27
|
-
"start": "
|
|
28
|
-
"test": "npm run asbuild:test &&
|
|
29
|
-
"
|
|
30
|
-
"test:
|
|
31
|
-
"
|
|
27
|
+
"start": "tsx ./bin/index.ts",
|
|
28
|
+
"test": "npm run asbuild:test && tsx ./bin/test.ts",
|
|
29
|
+
"tsbuild": "tsc",
|
|
30
|
+
"test:w3f": "tsx ./bin/test-w3f.ts",
|
|
31
|
+
"test:gas-cost": "tsx ./bin/test-gas-cost.ts",
|
|
32
|
+
"update-version": "tsx ./web/bump-version.ts $GITHUB_SHA",
|
|
32
33
|
"web": "npx live-server ./web"
|
|
33
34
|
},
|
|
34
35
|
"type": "module",
|
|
@@ -37,7 +38,10 @@
|
|
|
37
38
|
"license": "MPL-2.0",
|
|
38
39
|
"devDependencies": {
|
|
39
40
|
"@biomejs/biome": "^2.2.6",
|
|
40
|
-
"
|
|
41
|
+
"@types/node": "^24.8.1",
|
|
42
|
+
"assemblyscript": "^0.28.8",
|
|
43
|
+
"tsx": "^4.20.6",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
41
45
|
},
|
|
42
46
|
"files": [
|
|
43
47
|
"build/**/*.wasm",
|