forked from 10up/figma-to-wordpress-theme-json-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
{
"name": "figma-wordpress-theme-json-sync",
"version": "1.3.0",
"description": "Sync design tokens between Figma variables and WordPress theme.json",
"homepage": "https://github.com/linchpin/figma-wordpress-theme-json-sync",
"repository": {
"type": "git",
"url": "https://github.com/linchpin/figma-wordpress-theme-json-sync.git"
},
"license": "MIT",
"author": {
"name": "Linchpin",
"url": "https://linchpin.com"
},
"main": "code.js",
"scripts": {
"build": "webpack",
"watch": "npm run build -- --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"lint:types": "tsc --noEmit",
"lint:all": "npm run lint && npm run lint:types",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@figma/plugin-typings": "^1.108.0",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitest/coverage-v8": "^3.1.4",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"vitest": "^3.1.4",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@figma/eslint-plugin-figma-plugins": "^0.16.1",
"@typescript-eslint/parser": "^6.21.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1"
}
}