-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 999 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
38
39
40
41
42
43
{
"name": "styled-system-figma",
"version": "0.1.2",
"author": "Anton Vasin <[email protected]>",
"description": "Generate styled-system theme from Figma file",
"repository": "antonvasin/styled-system-figma",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc -b",
"test": "ava",
"test:types": "tsc --noEmit"
},
"dependencies": {
"color-namer": "^1.3.0",
"figma-js": "^1.5.1"
},
"devDependencies": {
"@types/color-namer": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"ava": "^1.0.0-rc.2",
"eslint": "^7.32.0",
"prettier": "^2.3.2",
"ts-node": "^7.0.1",
"typescript": "^4.3.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"ava": {
"files": "**/__tests__",
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}