-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 845 Bytes
/
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
{
"name": "figma2tokens",
"version": "0.0.6",
"description": "EXPERIMENTAL: Transforms figma-token exported json files into css/variable output files ",
"keywords": [
"figma-tokens",
"figma",
"design-tokens"
],
"homepage": "https://github.com/Mopholo/figma2Tokens",
"bugs": {
"url": "https://github.com/Mopholo/figma2Tokens/issues"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"figma2Tokens": "./index.js"
},
"repository": {
"type": "git",
"url": "ttps://github.com/Mopholo/figma2Tokens.git"
},
"type": "module",
"author": "Todd Wererelius",
"license": "MIT",
"private": false,
"engines": {
"node": ">=18.2.0"
},
"dependencies": {
"commander": "^9.4.0",
"conf": "^10.2.0",
"glob": "^8.0.3"
}
}