-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.11 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.11 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
95
96
{
"name": "codeflash",
"version": "0.10.2",
"description": "Codeflash - AI-powered code optimization for JavaScript and TypeScript",
"main": "runtime/index.js",
"types": "runtime/index.d.ts",
"bin": {
"codeflash": "./bin/codeflash.js",
"codeflash-setup": "./bin/codeflash-setup.js"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./runtime/index.d.ts",
"require": "./runtime/index.js",
"import": "./runtime/index.js"
},
"./capture": {
"require": "./runtime/capture.js",
"import": "./runtime/capture.js"
},
"./serializer": {
"require": "./runtime/serializer.js",
"import": "./runtime/serializer.js"
},
"./comparator": {
"require": "./runtime/comparator.js",
"import": "./runtime/comparator.js"
},
"./loop-runner": {
"require": "./runtime/loop-runner.js",
"import": "./runtime/loop-runner.js"
},
"./jest-reporter": {
"require": "./runtime/jest-reporter.js",
"import": "./runtime/jest-reporter.js"
}
},
"scripts": {
"postinstall": "node scripts/postinstall.js",
"pack": "npm pack",
"prepublishOnly": "echo 'Ready to publish'"
},
"files": [
"bin/",
"scripts/",
"runtime/"
],
"keywords": [
"codeflash",
"optimization",
"performance",
"javascript",
"typescript",
"ai",
"cli",
"jest",
"vitest"
],
"author": "Codeflash AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codeflash-ai/codeflash.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/codeflash-ai/codeflash/issues"
},
"homepage": "https://codeflash.ai",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"jest": ">=27.0.0",
"jest-runner": ">=27.0.0",
"vitest": ">=1.0.0"
},
"peerDependenciesMeta": {
"jest": {
"optional": true
},
"jest-runner": {
"optional": true
},
"vitest": {
"optional": true
}
},
"dependencies": {
"better-sqlite3": "^12.0.0",
"@msgpack/msgpack": "^3.0.0"
}
}