You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

{
"name": "@expo/apple-utils",
"version": "0.0.0-alpha.31",
"main": "build",
"license": "MIT",
"scripts": {
"prepare": "yarn run clean && yarn run typegen && yarn run build:prod && yarn run append-types",
"lint": "eslint . --ext .ts",
"watch": "yarn run build -w",
"test": "jest",
"build": "ncc build ./src/index.ts -o build/",
"build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
"clean": "rimraf ./build/",
"typegen": "tsc --declaration --emitDeclarationOnly --project ../app-store/ --outFile ./ts-declarations/expo__app-store/app-store.d.ts",
"append-types": "ts-node ./scripts/prepare.ts"
},
"bin": {
"apple-utils": "./bin.js"
},
"keywords": [],
"files": [
"ts-declarations",
"!*.tsbuildinfo",
"!*.DS_Store",
"bin.js",
"build"
],
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.14",
"@types/prompts": "^2.0.6",
"@vercel/ncc": "^0.27.0",
"commander": "^6.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0"
},
"publishConfig": {
"access": "public"
}
}