-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.81 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
{
"name": "figma-copy-manager",
"version": "0.0.1",
"description": "Copy Manager Figma Plugin",
"main": "dist/code.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"tsc": "npm run tsc:main && npm run tsc:ui && npm run tsc:tests",
"tsc:main": "tsc --noEmit -p plugin-src",
"tsc:ui": "tsc --noEmit -p ui-src",
"tsc:tests": "tsc --noEmit -p plugin-src/__tests__",
"tsc:watch": "concurrently -n widget,iframe,tests \"npm run tsc:main -- --watch --preserveWatchOutput\" \"npm run tsc:ui -- --watch --preserveWatchOutput\" \"npm run tsc:tests -- --watch --preserveWatchOutput\"",
"build": "npm run build:ui && npm run build:main -- --minify",
"build:main": "esbuild plugin-src/code.ts --bundle --outfile=dist/code.js --target=es6",
"build:ui": "npx vite build --minify esbuild --emptyOutDir=false",
"build:watch": "concurrently -n widget,iframe \"npm run build:main -- --watch\" \"npm run build:ui -- --watch\"",
"dev": "concurrently -n tsc,build,vite 'npm:tsc:watch' 'npm:build:watch' 'vite'",
"lint:plugin": "eslint ./plugin-src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpmorganchase/Figma-Plugins-and-Widgets.git"
},
"keywords": [
"figma-plugin"
],
"author": "JPMC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jpmorganchase/Figma-Plugins-and-Widgets/issues"
},
"homepage": "https://github.com/jpmorganchase/Figma-Plugins-and-Widgets#readme",
"dependencies": {
"@salt-ds/core": "^1.27.1",
"@salt-ds/icons": "^1.11.2",
"@salt-ds/lab": "^1.0.0-alpha.44",
"@salt-ds/theme": "^1.15.0",
"papaparse": "^5.4.1",
"react": "^18.3.0",
"react-dom": "^18.3.0"
},
"devDependencies": {
"@types/papaparse": "^5.3.8"
}
}