-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.01 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
{
"name": "figma-semantic-versioning",
"version": "0.5.0",
"description": "Simplified Semver-based versioning for your Figma Design Nodes",
"main": "dist/code.js",
"scripts": {
"watch": "cross-env NODE_ENV=dev watchexec -i \"**/dist/**\" \"npm run lint && npm run build\"",
"lint": "tsc -noEmit -p tsconfig.json && xo **/*.ts",
"build": "cross-env NODE_ENV=dev node build.mjs",
"release-build": "cross-env NODE_ENV=prod node build.mjs"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@chialab/esbuild-plugin-html": "^0.17",
"@figma/plugin-typings": "^1.55",
"@types/lodash": "^4.14.188",
"autoprefixer": "^10.4.13",
"ava": "^4",
"cross-env": "^7.0.3",
"esbuild": "^0.15",
"esbuild-plugin-postcss2": "^0.1.2",
"esbuild-svelte": "^0.7.1",
"eslint-plugin-svelte3": "^4.0.0",
"lodash": "^4.17.21",
"postcss": "^8.4.19",
"svelte-preprocess": "^4.10.7",
"typescript": "^4.8.4",
"xo": "^0.52.4"
}
}