-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
45
46
47
48
49
{
"name": "figma-native-exporter",
"version": "1.0.0",
"description": "Figma 设计转 React Native 页面生成器",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"extract-frame": "ts-node src/extract-frame.ts",
"list-frames": "ts-node src/list-frames.ts",
"gen-react-native": "ts-node src/gen-react-native.ts",
"design-to-code": "node scripts/design-to-code.js",
"generate-component": "npm run design-to-code"
},
"keywords": [
"figma",
"react-native",
"expo",
"design-to-code"
],
"author": "",
"license": "ISC",
"dependencies": {
"@expo/webpack-config": "^19.0.0",
"@types/node": "^24.0.13",
"@types/node-fetch": "^2.6.12",
"@types/yargs": "^17.0.33",
"dotenv": "^17.2.0",
"expo": "~49.0.15",
"expo-linear-gradient": "~12.3.0",
"expo-status-bar": "~1.6.0",
"node-fetch": "^2.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.10",
"react-native-web": "~0.19.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.14",
"@types/react-native": "~0.72.2"
},
"private": true
}