-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 838 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 838 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
{
"name": "figlog",
"version": "3.0.0",
"repository": "https://github.com/FormidableLabs/figlog.git",
"devDependencies": {
"@figma/plugin-typings": "^1.92.0",
"@figma/widget-typings": "^1.9.1",
"date-fns": "^3.6.0",
"esbuild": "*",
"prettier": "3.2.5",
"typescript": "*"
},
"contributors": [
"Ryan Srofe <rsrofe@gmail.com>",
"Christy Presler <christy.presler@nearform.com>"
],
"description": "The easiest and most efficient way to document team decisions and the evolution of your changes in Figma.",
"license": "MIT",
"scripts": {
"build": "esbuild widget-src/Widget.tsx --bundle --outfile=dist/code.js --target=es6",
"test": "prettier . --write && tsc --noEmit --noUnusedLocals --noUnusedParameters --skipLibCheck -p widget-src",
"watch": "bun run build -- --watch"
}
}