-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1 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
{
"name": "@ontech7/figma-node-query",
"version": "0.2.0",
"description": "Fetch and inspect nodes within Figma files via URL and PAT, with results serialized as JSON objects/arrays.",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/ontech7/figma-node-query.git"
},
"keywords": [
"figma",
"node",
"query",
"finder",
"api",
"web"
],
"author": "Andrea Losavio (github.com/ontech7)",
"license": "BSD-3-Clause",
"peerDependencies": {
"dotenv": "*"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"dotenv": "^17.2.1",
"jest": "^30.0.0",
"ts-jest": "^29.4.1",
"typescript": "~5.8.3"
},
"homepage": "https://github.com/ontech7/figma-node-query",
"bugs": {
"url": "https://github.com/ontech7/figma-node-query/issues"
},
"readmeFilename": "README.md"
}