-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "mucklet-script",
"version": "1.68.1",
"scripts": {
"test": "node tests",
"test:dev": "node --test",
"build": "asc scripts/index.ts --runtime minimal --exportRuntime --lib ./lib/host.ts --lib ./lib/env.ts",
"build:types": "node devbin/buildtypes.js",
"build:docs": "node devbin/builddocs.js"
},
"author": "Accipiter Nisus <accipiter@gmail.com>",
"license": "Apache-2.0",
"description": "A project to build and test room scripts for Mucklet realms.",
"repository": {
"url": "https://github.com/mucklet/mucklet-script",
"type": "git"
},
"homepage": "https://github.com/mucklet/mucklet-script#readme",
"bin": {
"mucklet-script": "./bin/index.js"
},
"overrides": {
"assemblyscript": "$assemblyscript"
},
"type": "module",
"files": [
"/bin",
"/docs",
"/examples",
"/lib",
"/scripts",
"/tests",
"asconfig.json",
"mucklet.config.js",
"tsconfig.json"
],
"dependencies": {
"assemblyscript": "^0.28.9",
"isomorphic-ws": "^5.0.0",
"json-as": "1.1.23",
"resclient": "^2.5.1",
"tinyargs": "^0.1.4",
"visitor-as": "^0.11.4"
},
"devDependencies": {
"eslint": "^9.18.0",
"eslint-plugin-jsdoc": "^50.6.2",
"jsdoc": "^4.0.4",
"typedoc": "^0.28.4",
"typescript": "^5.8.3"
}
}