-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.84 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
{
"name": "figma-plugin-sync-notion",
"version": "1.0.0",
"license": "MIT",
"author": "Ryo Nakae",
"scripts": {
"build": "NODE_ENV=production concurrently -P 'npm:build:* -- {*}' -- --minify",
"build:css": "tailwindcss --input ./src/ui/styles/input.css --output ./src/ui/styles/output.css",
"build:js": "build-figma-plugin --typecheck",
"check": "biome check",
"prepare": "husky || true",
"watch": "npm run build:css && concurrently -P 'npm:build:* -- {*}' -- --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs,json}": ["biome check --apply"]
},
"dependencies": {
"@create-figma-plugin/ui": "3.2.0",
"@create-figma-plugin/utilities": "3.2.0",
"clsx": "2.1.1",
"i18next": "23.14.0",
"lodash": "4.17.21",
"preact": "10.23.2",
"query-string": "9.1.0",
"react-i18next": "15.0.1",
"react-use": "17.5.1",
"zustand": "4.5.5"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@create-figma-plugin/build": "3.2.0",
"@create-figma-plugin/tsconfig": "3.2.0",
"@figma/plugin-typings": "1.98.0",
"@types/lodash": "4.17.7",
"@types/node": "22.5.0",
"concurrently": "8.2.2",
"dotenv": "16.4.5",
"husky": "9.1.5",
"lint-staged": "15.2.9",
"tailwindcss": "3.4.10",
"typescript": "5.5.4"
},
"figma-plugin": {
"editorType": ["figma"],
"id": "1116202373222780315",
"name": "Sync Text with Notion",
"main": "src/main/index.ts",
"ui": "src/ui/index.tsx",
"relaunchButtons": {
"open": {
"name": "Sync Text with Notion",
"main": "src/main/index.ts",
"ui": "src/ui/index.tsx"
}
},
"documentAccess": "dynamic-page",
"networkAccess": {
"allowedDomains": [
"https://fonts.googleapis.com",
"https://fonts.gstatic.com",
"https://*.workers.dev"
]
}
}
}