-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.01 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.01 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@skeldjs/waterway",
"version": "3.0.3",
"license": "GPL-3.0-only",
"main": "./dist/src/index",
"bin": "./dist/bin/pkg.js",
"scripts": {
"build": "tsc -p ./",
"setup": "ts-node ./bin/setup",
"setup:dev": "cd scripts && yarn && node ./setupDev.js",
"lint": "eslint src/**/*.ts",
"fix": "eslint src/**/*.ts --fix",
"plugins": "ts-node ./bin/plugins",
"prepack": "yarn build",
"publish": "yarn npm publish --access public",
"start": "node ./dist/bin/bootstrap",
"dev": "ts-node ./bin/bootstrap",
"docs": "typedoc --out docs --json docs/json.json"
},
"devDependencies": {
"@types/koa": "^2",
"@types/koa__router": "^12",
"@types/minimatch": "^3.0.5",
"@types/node": "^24.7.0",
"@types/prompts": "^2.0.14",
"@types/triple-beam": "^1.3.2",
"@types/vorpal": "^1.12.0",
"@types/yargs": "^17.0.0",
"pinst": "^2.1.6",
"ts-node": "^10.0.0",
"typedoc": "^0.28.13",
"typedoc-plugin-external-module-map": "^2.2.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@koa/router": "^14.0.0",
"@schemastore/package": "^0.0.6",
"@skeldjs/au-client": "^3.0.3",
"@skeldjs/au-constants": "^3.0.3",
"@skeldjs/au-core": "^3.0.3",
"@skeldjs/au-protocol": "^3.0.3",
"@skeldjs/au-text": "^3.0.3",
"@skeldjs/events": "^3.0.3",
"@skeldjs/hazel": "^3.0.3",
"chalk": "^4.1.1",
"chokidar": "^3.5.2",
"compare-versions": "^3.6.0",
"dotenv": "^10.0.0",
"koa": "^3.0.3",
"koa-body": "^6.0.1",
"minimatch": "^3.0.4",
"prompts": "^2.4.2",
"query-registry": "^2.5.0",
"reflect-metadata": "^0.1.13",
"resolve-from": "^5.0.0",
"resolve-pkg": "^2.0.0",
"triple-beam": "^1.3.0",
"vorpal": "^1.12.0"
},
"files": [
"dist"
],
"packageManager": "yarn@4.10.3"
}