-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "figma-svelte-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "rm -rf dist && npm run build:svelte && npm run build:figma",
"build:svelte": "vite build -c vite.svelte.config.ts",
"build:figma": "vite build -c vite.figma.config.ts",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.svelte.json"
},
"devDependencies": {
"@figma/plugin-typings": "*",
"@figma/eslint-plugin-figma-plugins": "*",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"eslint": "8.54.0",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tsconfig/svelte": "^5.0.2",
"@types/jsdom": "^21.1.6",
"autoprefixer": "^10.4.17",
"figma-svelte-components": "file:../figma-svelte-components",
"js-convert-case": "4.2.0",
"jsdom": "^23.2.0",
"jszip": "3.10.1",
"postcss": "^8.4.33",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"typescript": "^5.3.2",
"vite": "^5.0.8"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@figma/figma-plugins/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"root": true,
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
}
}