This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "aspkg-web",
"version": "0.0.0",
"description": "AssemblyScript Packages Website",
"license": "MIT",
"homepage": "https://github.com/aspkg/website#readme",
"authors": "https://github.com/aspkg/website/graphs/contributors",
"main": "server.js",
"scripts": {
"start": "npm run dev",
"test": "node tests",
"dev": "npm run asbuild:untouched && ts-node server",
"build": "npm run asbuild:untouched && npm run asbuild:optimized",
"asbuild:untouched": "asc assembly/index.ts --explicitStart --exportRuntime --exportTable --target debug",
"asbuild:optimized": "asc assembly/index.ts --explicitStart --exportRuntime --exportTable --target release",
"yarn:asbuild": "yarn asbuild:untouched && yarn asbuild:optimized",
"format": "prettier ./ --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aspkg/website.git"
},
"keywords": [
"AssemblyScript",
"Package",
"aspkg",
"CLI"
],
"bugs": {
"url": "https://github.com/aspkg/website/issues"
},
"dependencies": {
"@assemblyscript/loader": "^0.19.7",
"@octokit/core": "^3.5.1",
"argon2": "^0.28.2",
"as-console": "^6.0.0",
"as-fetch": "^1.0.8",
"asdom": "^0.2.2",
"assemblyscript": "^0.19.7",
"blake3": "^2.1.4",
"bufferutil": "^4.0.3",
"close-with-grace": "^1.1.0",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"ecmassembly": "^0.1.9",
"kati": "^0.5.1",
"localtunnel": "^2.0.1",
"marked": "^2.1.3",
"ms": "^2.1.3",
"nanoid": "^3.1.23",
"node-fetch": "^2.6.1",
"octokit": "^1.1.0",
"rezidb": "^3.0.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"undici-fetch": "*",
"utf-8-validate": "^5.0.5",
"ws": "^7.5.3"
},
"devDependencies": {
"assemblyscript": "^0.19.7",
"prettier": "^2.3.2"
}
}