mirror of
https://github.com/kusti8/proton-native.git
synced 2026-05-15 14:15:50 -06:00
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "proton-native",
|
|
"version": "1.0.16",
|
|
"description": "React Native for the desktop, cross compatible",
|
|
"main": "bin/index.js",
|
|
"lint-staged": {
|
|
"*.{js,json,css,md}": [
|
|
"prettier --single-quote --trailing-comma es5 --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"demo": "babel-node Demo.js",
|
|
"prettier":
|
|
"prettier --single-quote --trailing-comma es5 --write 'src/**/*.js'",
|
|
"build": "babel src -d bin",
|
|
"pub": "babel src -d bin && npm publish",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/kusti8/proton-native.git"
|
|
},
|
|
"author": "Gustav Hansen <kusti8@gmail.com>",
|
|
"license": "GPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/kusti8/proton-native/issues"
|
|
},
|
|
"homepage": "https://proton-native.js.org",
|
|
"dependencies": {
|
|
"color": "^3.0.0",
|
|
"fbjs": "^0.8.16",
|
|
"libui-node": "^0.1.0",
|
|
"prop-types": "^15.6.0",
|
|
"react": "^16.2.0",
|
|
"react-dom": "^16.2.0",
|
|
"react-reconciler": "^0.7.0",
|
|
"yoga-layout": "^1.9.3"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^0.14.3",
|
|
"babel-cli": "^6.26.0",
|
|
"babel-preset-env": "^1.6.1",
|
|
"babel-preset-react": "^6.24.1",
|
|
"babel-preset-stage-0": "^6.24.1",
|
|
"lint-staged": "^7.0.0",
|
|
"prettier": "^1.10.2",
|
|
"react-devtools": "^3.0.0"
|
|
},
|
|
"files": ["bin"]
|
|
}
|