-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) Β· 1.96 KB
/
package.json
File metadata and controls
92 lines (92 loc) Β· 1.96 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cleye",
"version": "0.0.0-semantic-release",
"description": "The intuitive CLI development tool",
"keywords": [
"cli",
"command line",
"argv",
"parameters",
"flags",
"node",
"typescript"
],
"license": "MIT",
"repository": "privatenumber/cleye",
"funding": "https://github.com/privatenumber/cleye?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist",
"skills"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./formats": {
"require": {
"types": "./dist/formats.d.cts",
"default": "./dist/formats.cjs"
},
"import": {
"types": "./dist/formats.d.mts",
"default": "./dist/formats.mjs"
}
}
},
"imports": {
"#cleye": {
"types": "./src/index.ts",
"development": "./src/index.ts",
"default": "./dist/index.mjs"
},
"#cleye/formats": {
"types": "./src/formats.ts",
"development": "./src/formats.ts",
"default": "./dist/formats.mjs"
}
},
"packageManager": "pnpm@10.13.1",
"scripts": {
"build": "pkgroll --minify",
"lint": "lintroll --cache --git",
"type-check": "tsc",
"test": "node tests/index.ts",
"dev": "node --watch --conditions=development tests/index.ts",
"prepack": "pnpm build && clean-pkg-json",
"prepare": "skills-npm"
},
"dependencies": {
"terminal-columns": "^2.0.0",
"type-flag": "^4.1.0"
},
"devDependencies": {
"@types/node": "^24.9.2",
"clean-pkg-json": "^1.3.0",
"expect-type": "^1.2.2",
"fastest-levenshtein": "^1.0.16",
"kolorist": "^1.8.0",
"lintroll": "^1.24.2",
"manten": "^2.0.0",
"nanospy": "^1.0.0",
"pkgroll": "^2.20.1",
"skills-npm": "^1.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}