-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "figmatranslate",
"version": "1.0.0",
"description": "Figma contents are able to translate by AI",
"source": "src/index.ts",
"module": "dist/main.js",
"targets": {
"module": {
"includeNodeModules": true
}
},
"scripts": {
"tsc": "tsc",
"watch": "parcel watch",
"build": "rm -rf .parcel-cache/ && rm -rf dist/ && cross-env NODE_ENV=production parcel build --no-source-maps",
"build:dev": "rm -rf .parcel-cache/ && rm -rf dist/ && parcel build"
},
"keywords": [],
"author": "wangym",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/preset-typescript": "^7.24.1",
"@figma/eslint-plugin-figma-plugins": "*",
"@figma/plugin-typings": "*",
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@parcel/validator-typescript": "^2.12.0",
"@types/lodash": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"parcel": "^2.12.0",
"parcel-plugin-typescript": "^1.0.0",
"typescript": "^5.3.2"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@figma/figma-plugins/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"root": true,
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
},
"dependencies": {
"lodash": "^4.17.21",
"openai": "^4.38.3"
}
}