-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "@universalis/scripts",
"version": "1.0.0",
"description": "Management scripts for Universalis",
"type": "module",
"main": "./src/umgmt.mts",
"bin": {
"umgmt": "./bin/umgmt.mjs"
},
"engines": {
"node": ">=21.0.0"
},
"scripts": {
"start": "tsx .",
"build": "tsc --project tsconfig.dist.json",
"lint": "tsc --noEmit && eslint src && prettier --check src",
"fix": "eslint --fix src && prettier -w src",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^13.1.0",
"execa": "^9.5.2",
"ink": "^5.2.0",
"react": "^18.3.1",
"simple-git": "^3.27.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@tsconfig/node20": "^20.1.5",
"@types/node": "^22.14.1",
"@types/react": "18",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^4.3.2",
"eslint-plugin-import-x": "^4.10.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"ink-testing-library": "^4.0.0",
"prettier": "^3.5.3",
"typescript-eslint": "^8.30.1",
"vitest": "^1.4.0"
},
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677"
}