forked from didoo/figma-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.08 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
{
"name": "@knapsack-labs/figma-api",
"version": "1.13.4",
"description": "Figma js typed api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"lint": "eslint ./",
"start": "tsc --watch"
},
"keywords": [
"figma",
"figmajs",
"json",
"api",
"parser",
"ast",
"typed"
],
"license": "MIT",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@knapsack/eslint-config-starter": "4.37.1",
"@knapsack/prettier-config": "4.37.1",
"@knapsack/typescript-config-starter": "4.37.1",
"@rushstack/eslint-patch": "^1.6.0",
"@types/node": "12.0.2",
"auto": "^11.1.2",
"eslint": "^8.38.0",
"prettier": "^2.1.0",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/knapsack-cloud/figma-api"
},
"author": "KnapsackBot <[email protected]>",
"publishConfig": {
"access": "public"
}
}