-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.59 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.59 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "figma-to-wordpress-theme-json-exporter",
"version": "1.3.0",
"description": "Generate WordPress theme.json from Figma variables",
"homepage": "https://github.com/10up/figma-to-wordpress-theme-json-exporter",
"repository": {
"type": "git",
"url": "https://github.com/10up/figma-to-wordpress-theme-json-exporter.git"
},
"license": "MIT",
"contributors": [
{
"name": "Fabian Kägy",
"email": "fabian@10up.com",
"url": "https://github.com/fabiankaegy"
},
{
"name": "10up",
"email": "opensource@10up.com",
"url": "https://10up.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",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@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",
"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"
},
"10up-toolkit": {
"build": {
"code": "src/code.ts"
}
}
}