-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 882 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 882 Bytes
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
{
"name": "nanos-cli",
"version": "0.6.0",
"description": "CLI tool for NanoSights.dev",
"main": "./dist/cli.js",
"module": "./dist/cli.mjs",
"types": "./dist/cli.d.ts",
"type": "module",
"bin": {
"nanos": "./dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"postinstall": "node dist/postinstall.js",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"nanosights",
"cli",
"command-line",
"tool",
"analytics",
"developer-tools"
],
"author": "aspecs",
"license": "ISC",
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2",
"inquirer": "^12.11.1",
"ora": "^9.1.0"
},
"devDependencies": {
"@types/node": "^25.0.10",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}