-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.13 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
45
46
47
48
49
50
{
"name": "serial-as",
"version": "2.0.0",
"description": "A serializer template for the assemblyscript language",
"main": "dist",
"type": "module",
"types": "dist",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gagdiez/serial-as.git",
"directory": ""
},
"author": "Guillermo Gallardo & Willem Wyndham",
"license": "MIT",
"private": true,
"scripts": {
"test": "asp",
"test:borsh": "asp -f bencode",
"test:json": "asp -f jvalue",
"build": "yarn workspace @serial-as/transform build",
"publish": "lerna publish"
},
"peerDependencies": {
"assemblyscript": "^0.19.2"
},
"devDependencies": {
"@as-pect/cli": "^7.0.8",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"asbuild": "^0.2.0",
"assemblyscript": "^0.21.3",
"jest": "^29.0.3",
"lerna": "^5.5.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"workspaces": [
"core",
"json",
"borsh",
"transform",
"tests"
],
"dependencies": {
"@assemblyscript/loader": "^0.21.3"
}
}