-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.26 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
{
"name": "cipher-scope",
"version": "0.1.0",
"description": "CLI that prints a branded ASCII banner plus auto-detected project info — configured via cipherscope.toml",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"cipher-scope": "./dist/bin/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cipherunits/CipherScope.git"
},
"homepage": "https://github.com/cipherunits/CipherScope#readme",
"bugs": {
"url": "https://github.com/cipherunits/CipherScope/issues"
},
"keywords": [
"cli",
"banner",
"ascii",
"figlet",
"developer-tools",
"devtools",
"cipherscope",
"cipher-scope",
"toml",
"config",
"terminal",
"package-manager",
"env"
],
"author": "CipherUnits",
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"type": "commonjs",
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/node": "^26.1.2",
"tsup": "^8.5.1",
"typescript": "^6.0.3"
},
"dependencies": {
"figlet": "^1.11.4"
}
}