-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.09 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.09 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
{
"name": "devknife",
"version": "1.0.3",
"description": "The ultimate zero-dependency, 50-in-1 developer Swiss Army knife CLI and library.",
"author": "Avinashvelu03 <[email protected]>",
"license": "MIT",
"bin": {
"devknife": "./dist/cjs/cli.cjs"
},
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
},
"./cli": {
"import": "./dist/esm/cli.js",
"require": "./dist/cjs/cli.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src/ tests/ --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [
"cli",
"developer-tools",
"swiss-army-knife",
"uuid",
"jwt",
"base64",
"hash",
"json-formatter",
"color-converter",
"timestamp",
"password-generator",
"lorem-ipsum",
"nanoid",
"zero-dependencies",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/Avinashvelu03/devknife"
},
"bugs": {
"url": "https://github.com/Avinashvelu03/devknife/issues"
},
"homepage": "https://github.com/Avinashvelu03/devknife#readme",
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-v8": "^1.2.0",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
}
}