-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
81 lines (81 loc) Β· 1.73 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"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": "[email protected]"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"imports": {
"#cleye": {
"types": "./src/index.ts",
"development": "./src/index.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"prepare": "simple-git-hooks",
"build": "pkgroll --minify",
"lint": "eslint --cache .",
"type-check": "tsc --noEmit",
"test": "tsx tests",
"test:dts": "tsd -f tests/cleye.test-d.ts",
"dev": "tsx watch --conditions=development tests",
"prepack": "pnpm build && clean-pkg-json"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.ts": "pnpm lint"
},
"dependencies": {
"terminal-columns": "^1.4.1",
"type-flag": "^3.0.0"
},
"devDependencies": {
"@pvtnbr/eslint-config": "^0.33.0",
"@types/node": "^18.13.0",
"clean-pkg-json": "^1.2.0",
"eslint": "^8.27.0",
"kolorist": "^1.7.0",
"lint-staged": "^13.1.2",
"manten": "^0.6.1",
"nanospy": "^0.5.0",
"pkgroll": "^1.9.0",
"simple-git-hooks": "^2.8.1",
"tsd": "^0.25.0",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"eslintConfig": {
"extends": "@pvtnbr",
"rules": {
"unicorn/no-process-exit": "off"
}
},
"packageManager": "[email protected]"
}