forked from tolgee/figma-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.36 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
{
"name": "@tolgee/figma-plugin",
"version": "0.0.1",
"description": "Tolgee Figma Plugin",
"main": "code.js",
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch",
"schema": "openapi-typescript http://localhost:8080/v3/api-docs/Accessible%20with%20API%20key --output ./src/client/apiSchema.generated.ts",
"eslint": "eslint --ext .ts,.tsx,.js,.jsx src",
"watch:web": "npm run --prefix web watch",
"dev:web": "ts-node ./scripts/runAfterApp.ts \"npm run watch:web\"",
"dev:figma": "ts-node ./scripts/runAfterApp.ts \"npm run watch\"",
"server": "cd cypress && docker compose up --force-recreate",
"cy:run": "ts-node ./scripts/runAfterApp.ts \"npm run watch:web\" \"npx cypress run\"",
"cy:open": "ts-node ./scripts/runAfterApp.ts \"npm run watch:web\" \"npx cypress open\"",
"tsc": "tsc --noEmit",
"prettier": "prettier . --write"
},
"author": "Tolgee",
"license": "MIT",
"devDependencies": {
"@create-figma-plugin/build": "^3.1.0",
"@create-figma-plugin/tsconfig": "^3.1.0",
"@figma/plugin-typings": "^1.89.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"colors": "^1.4.0",
"concurrently": "^7.6.0",
"cypress": "^12.5.1",
"cypress-iframe": "^1.0.1",
"esbuild": "^0.17.8",
"eslint": "^8.31.0",
"eslint-config-preact": "^1.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"openapi-typescript": "^6.1.0",
"prettier": "^2.8.2",
"serve": "^14.2.0",
"svg-icon": "^0.8.2",
"terminate": "^2.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@create-figma-plugin/ui": "3.2.0",
"@create-figma-plugin/utilities": "3.2.0",
"clsx": "^1.2.1",
"preact": "^10.11.3",
"react-query": "^3.39.2",
"use-context-selector": "^1.4.1",
"use-debounce": "^9.0.3"
},
"figma-plugin": {
"id": "1212381421658754793",
"name": "Tolgee",
"main": "src/main/main.ts",
"ui": "src/ui/ui.tsx",
"editorType": [
"figma"
],
"networkAccess": {
"allowedDomains": [
"*"
],
"reasoning": "For self-hosted instances, Tolgee needs to be able to fetch data from any URL."
}
}
}