-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
92 lines (92 loc) · 2.33 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "figma-text-utilities",
"version": "0.0.1",
"description": "A Figma plugin to split, normalize, and bulk copy and paste text layers",
"keywords": [
"create-figma-plugin",
"figma",
"figma-plugin",
"figma-plugins"
],
"license": "MIT",
"author": "Yuan Qing Lim",
"repository": {
"type": "git",
"url": "git://github.com/yuanqing/figma-plugins.git",
"directory": "packages/figma-text-utilities"
},
"type": "module",
"engines": {
"node": ">=18"
},
"files": [
"src"
],
"scripts": {
"prebuild": "npm run clean",
"build": "build-figma-plugin --typecheck --minify",
"clean": "rimraf '*.log' build 'src/**/*.css.d.ts'",
"fix": "concurrently npm:fix:js npm:fix:json",
"fix:js": "eslint --fix 'src/**/*.{ts,tsx}'",
"fix:json": "prettier --loglevel error --write '*.json'",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prewatch": "npm run clean",
"watch": "build-figma-plugin --typecheck --watch"
},
"dependencies": {
"@create-figma-plugin/ui": "2.5.0",
"@create-figma-plugin/utilities": "2.5.0",
"preact": "^10.15.1"
},
"figma-plugin": {
"name": "Text Utilities",
"id": "899501266127939530",
"editorType": [
"figma"
],
"menu": [
{
"name": "Bulk Edit Text",
"main": "src/bulk-edit-text/main.ts",
"ui": "src/bulk-edit-text/ui.ts"
},
"-",
{
"name": "Bulk Copy Text",
"main": "src/bulk-copy-text/main.ts",
"ui": "src/bulk-copy-text/ui.ts"
},
{
"name": "Bulk Paste Text",
"main": "src/bulk-paste-text/main.ts",
"ui": "src/bulk-paste-text/ui.ts"
},
"-",
{
"name": "Copy for Spreadsheet",
"main": "src/copy-for-spreadsheet/main.ts",
"ui": "src/copy-for-spreadsheet/ui.ts"
},
"-",
{
"name": "Find and Replace",
"main": "src/find-and-replace/main.ts",
"ui": "src/find-and-replace/ui.ts"
},
"-",
{
"name": "Split Text Layers by Line",
"main": "src/split-text-nodes-by-line/main.ts"
},
"-",
{
"name": "Normalize Text Style",
"main": "src/normalize-text-style/main.ts"
},
{
"name": "Reset Text Layer Names",
"main": "src/reset-text-layer-names/main.ts"
}
]
}
}