-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.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
{
"name": "pickasso",
"version": "0.0.3",
"author": "Hrishi Olickel <twitter-@hrishioa> (https://olickel.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/southbridgeai/pickasso.git"
},
"bin": {
"pickasso": "./dist/run.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"description": "Select diverse examples from JSON datasets",
"files": [
"dist",
"package.json"
],
"license": "Apache-2.0",
"scripts": {
"build": "tsup src/index.ts src/run.ts && tsc --emitDeclarationOnly --declaration --declarationDir dist && mv dist/index.d.ts dist/index.d.mts && cp dist/index.d.mts dist/index.d.cts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"cli": "node dist/run.js",
"postbuild": "echo 'Build completed successfully!'"
},
"type": "module",
"types": "./dist/index.d.cts",
"dependencies": {
"clipboardy": "^4.0.0",
"commander": "^12.1.0"
},
"devDependencies": {
"@swc/core": "^1.7.26",
"@types/bun": "^1.1.10",
"@types/jest": "^29.5.0",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
}
}