-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.31 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
91
92
93
94
{
"name": "datasink",
"version": "0.4.1",
"description": "sink \u2014 data hygiene for music PR. Scrub, rinse, soak, steep your contact lists. The `sink` CLI, published as datasink.",
"license": "MIT",
"type": "module",
"bin": {
"sink": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.js"
}
},
"browser": {
"./dist/phases/scrub/net.js": "./dist/phases/scrub/net.browser.js",
"./dist/phases/scrub/typo-map.js": "./dist/phases/scrub/typo-map.browser.js"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "pnpm clean && tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ test/",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"prepublishOnly": "pnpm test && pnpm build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@clack/prompts": "^1.1.0",
"chalk": "^5.4.0",
"commander": "^13.0.0",
"ink": "^6.8.0",
"ink-spinner": "^5.0.0",
"nanoid": "^5.1.0",
"openai": "^4.80.0",
"ora": "^8.0.0",
"react": "19.2.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"@types/react": "19.2.10",
"@vitest/coverage-v8": "^3.2.6",
"eslint": "^10.0.3",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^3.2.6"
},
"engines": {
"node": ">=20"
},
"keywords": [
"sink",
"datasink",
"cli",
"music",
"pr",
"contacts",
"email",
"validation",
"deduplication",
"enrichment",
"csv",
"data-hygiene"
],
"homepage": "https://datasink.dev",
"bugs": {
"url": "https://github.com/chrisschouk/sink-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisschouk/sink-cli.git"
},
"author": "Total Audio Promo",
"files": [
"dist",
"data",
"LICENSE",
"README.md"
]
}