-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
28 lines (28 loc) · 967 Bytes
/
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
{
"name": "code-snippet-editor-plugin",
"version": "1.0.0",
"description": "Translate component variants, properties, and more into dynamic code snippets for your design system.",
"main": "code.js",
"scripts": {
"test": "node test.js",
"build:src": "esbuild src/code.ts --bundle --outfile=code.js",
"build:test": "esbuild src/test.ts --bundle --outfile=test.js",
"dev": "concurrently -n source,test \"npm run build:src -- --watch\" \"npm run build:test -- --watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/figma/code-snippet-editor-plugin.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/figma/code-snippet-editor-plugin/issues"
},
"homepage": "https://github.com/figma/code-snippet-editor-plugin#readme",
"devDependencies": {
"@figma/plugin-typings": "^1.85.0",
"concurrently": "^8.2.2",
"esbuild": "^0.19.12",
"typescript": "^5.3.3"
}
}