-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
{
"name": "react-native-to-xml-converter",
"version": "0.0.3",
"description": "A converter from react native to xml code",
"keywords": [
"react-native",
"xml",
"converter",
"android",
"development",
"hybrid"
],
"homepage": "https://github.com/Adhidevudayakumar/react-native-to-xml-converter#readme",
"bugs": {
"url": "https://github.com/Adhidevudayakumar/react-native-to-xml-converter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adhidevudayakumar/react-native-to-xml-converter.git"
},
"license": "ISC",
"author": "Adhidev Udayakumar",
"main": "dist/index.js",
"bin": {
"rn-to-xml": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/babel__traverse": "^7.28.0",
"@types/node": "^20.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@babel/parser": "^7.28.6",
"@babel/traverse": "^7.28.6",
"@babel/types": "^7.28.6",
"fs": "^0.0.1-security",
"open": "^11.0.0"
}
}