-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 KB
/
package.json
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
{
"name": "reaict-js",
"version": "0.0.2",
"description": "Automatically optimize React components with AI",
"keywords": [
"react",
"reaict",
"automatic"
],
"funding": "https://github.com/sponsors/aidenybai",
"license": "MIT",
"author": {
"name": "Aiden Bai",
"email": "[email protected]",
"url": "https://aidenybai.com"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup"
},
"prettier": "@vercel/style-guide/prettier",
"dependencies": {
"@babel/core": "^7.22.20",
"@babel/generator": "^7.22.15",
"@babel/helper-module-imports": "^7.22.15",
"@babel/parser": "^7.22.16",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-syntax-typescript": "^7.22.5",
"@babel/types": "^7.22.19",
"openai": "^4.7.1",
"unplugin": "^1.4.0"
},
"devDependencies": {
"@types/babel-types": "^7.0.12",
"@types/babel__core": "^7.20.2",
"@types/babel__generator": "^7.6.5",
"@types/babel__helper-module-imports": "^7.18.1",
"@vercel/style-guide": "^5.0.1",
"prettier": "^3.0.3",
"tsup": "^7.2.0"
}
}