-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "easy-variables-to-json",
"version": "1.0.0",
"description": "Easy Variables to JSON",
"main": "code.js",
"scripts": {
"build:code": "bun build ./index.ts --outdir ./dist/code",
"dev:code": "bun build ./index.ts --outdir ./dist/code --watch",
"dev:ui": "vite build --watch",
"build:ui": "tsc && vite build",
"dev": "concurrently \"npm run dev:code\" \"npm run dev:ui\"",
"build": "mkdir -p dist && npm run build:ui && npm run build:code"
},
"author": "",
"license": "",
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "*",
"@figma/plugin-typings": "*",
"@types/ramda": "^0.30.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"concurrently": "^9.1.0",
"eslint": "^8.54.0",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-singlefile": "^2.0.3"
},
"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": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
},
"dependencies": {
"autoprefixer": "^10.4.20",
"highlight.js": "^11.10.0",
"postcss": "^8.4.49",
"ramda": "^0.30.1",
"tailwindcss": "^3.4.14"
}
}