-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "figma-code-transformer",
"version": "0.0.1",
"description": "Figma plugin to generate code using OpenAI API",
"engines": {
"node": "18",
"npm": ">=8.x"
},
"dependencies": {
"@create-figma-plugin/ui": "^2.3.0",
"@create-figma-plugin/utilities": "^2.3.0",
"@graphql-tools/load": "^7.8.13",
"@octokit/plugin-paginate-rest": "^6.0.0",
"@octokit/rest": "^19.0.7",
"@pinecone-database/pinecone": "^0.0.14",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"graphiql-explorer": "^0.9.0",
"graphql": "^16.6.0",
"js-base64": "^3.7.5",
"langchain": "^0.0.44",
"module": "^1.2.5",
"openai": "^3.2.1",
"preact": ">=10",
"prismjs": "^1.28.0",
"process": "^0.11.10",
"react-select": "^5.7.2",
"react-simple-code-editor": "^0.11.2",
"rimraf": "^4.4.1"
},
"devDependencies": {
"@create-figma-plugin/build": "^2.3.0",
"@create-figma-plugin/tsconfig": "^2.3.0",
"@figma/plugin-typings": "1.57.1",
"@types/jest": "29.5.1",
"@types/node": "^18.15.11",
"@types/prismjs": "^1.26.0",
"@types/react": ">=18",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"jest": "29.5.0",
"os": "^0.1.2",
"path": "^0.12.7",
"react": ">=18",
"stream": "^0.0.2",
"ts-jest": "29.1.0",
"typescript": ">=4"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch",
"test": "jest",
"test:watch": "jest --watch"
},
"figma-plugin": {
"editorType": [
"figma"
],
"id": "figma-code-transformer",
"name": "figma-code-transformer",
"main": "src/main.ts",
"ui": "src/ui.tsx"
},
"browser": {
"fs": false,
"os": false,
"path": false,
"constants": false
}
}