-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.55 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.55 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
{
"name": "@iterable/cli",
"version": "0.2.0",
"description": "Command-line interface for the Iterable API",
"keywords": [
"iterable",
"cli",
"api",
"command-line"
],
"author": "Greg Methvin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Iterable/cli.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"iterable": "dist/index.js"
},
"files": [
"dist",
"README.md",
"COMMANDS.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.23.0",
"publishConfig": {
"access": "public"
},
"pnpm": {
"minimumReleaseAge": 4320,
"minimumReleaseAgeExclude": [
"@iterable/*"
]
},
"scripts": {
"build": "pnpm format && pnpm lint:fix && tsc --project tsconfig.build.json && pnpm update-commands && chmod +x dist/index.js",
"build:clean": "rm -rf dist && pnpm build",
"build:dev": "tsc --incremental && pnpm update-commands && chmod +x dist/index.js",
"build:watch": "tsc --incremental --watch",
"check": "pnpm format:check && tsc --noEmit && eslint \"src/**/*.ts\" \"tests/**/*.ts\" --quiet",
"dev": "tsx watch src/index.ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" --log-level=warn",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" --log-level=warn",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix --quiet",
"prepublishOnly": "pnpm build",
"pretest": "pnpm --silent build",
"start": "node dist/index.js",
"test": "jest",
"test:unit": "jest --testPathPatterns=unit",
"test:integration": "jest --testPathPatterns=integration",
"test:e2e": "jest --testPathPatterns=e2e",
"update-commands": "node scripts/update-commands.js"
},
"dependencies": {
"@iterable/api": "0.10.0",
"@primno/dpapi": "2.0.1",
"boxen": "8.0.1",
"chalk": "5.6.2",
"cli-table3": "0.6.5",
"inquirer": "13.3.2",
"ora": "9.3.0",
"zod": "4.3.6",
"zod-opts": "1.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@jest/globals": "30.3.0",
"@swc/core": "1.15.21",
"@swc/jest": "0.2.39",
"@types/inquirer": "9.0.9",
"@types/jest": "30.0.0",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"eslint": "10.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"jest": "30.3.0",
"prettier": "3.8.1",
"tsx": "4.21.0",
"typescript": "6.0.2"
},
"sideEffects": false
}