-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
{
"name": "@arken/cli",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc -p tsconfig.lib.json",
"test": "vitest run",
"test:jest": "jest --coverage --config=jest.unit.config.js",
"test:watch": "jest --watch --collect-coverage --config=jest.unit.config.js",
"test:coverage": "jest --coverage",
"lint": "eslint --max-warnings=0 .",
"dev": "tsx -r dotenv/config -r tsconfig-paths/register ./src/cli.ts --interactive",
"cli": "cd src && tsx cli.ts",
"cli:math": "cd test/fixtures && tsx math.ts",
"cli:fs": "cd test/fixtures && tsx fs.ts",
"cli:diff": "cd test/fixtures && tsx diff.ts",
"cli:migrations": "cd test/fixtures && tsx migrations.ts",
"cli:application": "cd src/modules/application && tsx application.cli.ts",
"cli:config": "cd src/modules/config && tsx config.cli.ts"
},
"bin": {
"arken": "./bin/arken"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@arken/node": "workspace:*",
"@arken/seer-protocol": "workspace:*",
"@arken/evolution-protocol": "workspace:*",
"@arken/cerebro-protocol": "workspace:*",
"@types/jest": "^29",
"@types/node": "^20",
"jest": "^29",
"trpc": "^0",
"ts-node": "^10",
"typescript": "^5",
"yargs": "^17",
"zod": "^3",
"@types/yargs": "^17",
"@trpc/client": "11.0.0-rc.660",
"@trpc/server": "11.0.0-rc.660",
"commander": "^12",
"enquirer": "^2",
"ts-node-dev": "^2",
"cleye": "^1",
"picocolors": "^1",
"zod-to-json-schema": "^3",
"zod-validation-error": "^3",
"eslint-plugin-mmkal": "^0",
"execa": "^9",
"expect-type": "^0",
"fs-syncer": "^0",
"np": "^10",
"pkg-pr-new": "^0",
"strip-ansi": "^7",
"tsx": "^4",
"vitest": "^2",
"string-argv": "~0.3.2",
"dotenv": "^16"
}
}