-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 892 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 892 Bytes
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
{
"name": "uk-us-spelling-switch",
"version": "1.0.0",
"description": "UK-US spelling conversion for Figma and Chrome",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build:core && npm run build:figma && npm run build:chrome",
"build:core": "npm run build --workspace=@uk-us/core",
"build:figma": "npm run build --workspace=@uk-us/figma-plugin",
"build:chrome": "npm run build --workspace=@uk-us/chrome-extension",
"watch:figma": "npm run watch --workspace=@uk-us/figma-plugin",
"watch:chrome": "npm run watch --workspace=@uk-us/chrome-extension"
},
"keywords": [
"figma",
"chrome-extension",
"plugin",
"spelling",
"uk",
"us"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@figma/plugin-typings": "^1.98.0",
"esbuild": "^0.19.0",
"typescript": "^5.2.0"
}
}