-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 884 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 884 Bytes
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
{
"name": "protoscan",
"version": "0.0.1",
"private": true,
"description": "Automated Figma prototype QA — detect dead ends, orphan screens, broken navigation, and UX issues before sharing your prototype.",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present"
},
"keywords": [
"figma",
"prototype",
"qa",
"design",
"testing",
"dead-end",
"navigation",
"ux"
],
"author": "OxxO Pro",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/node": "^25.8.0",
"tsup": "^8.5.1",
"tsx": "^4.22.1",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}