This repository was archived by the owner on Mar 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.42 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.42 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
65
66
{
"name": "@mojis/cli",
"version": "0.0.4",
"type": "module",
"author": {
"name": "Lucas Nørgård",
"email": "lucasnrgaard@gmail.com",
"url": "https://luxass.dev"
},
"packageManager": "pnpm@10.4.1",
"license": "MIT",
"homepage": "https://github.com/mojisdev/cli",
"repository": {
"type": "git",
"url": "git+https://github.com/mojisdev/cli.git"
},
"bugs": {
"url": "https://github.com/mojisdev/cli/issues"
},
"bin": {
"mojis": "bin/mojis.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsx ./src/cli.ts",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"cac": "^6.7.14",
"consola": "^3.4.0",
"farver": "^0.4.0",
"fs-extra": "^11.3.0",
"semver": "^7.7.1",
"valibot": "1.0.0-rc.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@luxass/eslint-config": "^4.15.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.10",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.33",
"eslint": "^9.20.1",
"eslint-plugin-format": "^1.0.1",
"msw": "^2.7.0",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5",
"vitest-fetch-mock": "^0.4.3",
"vitest-testdirs": "^2.1.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw"
]
}
}