Skip to content

Instantly share code, notes, and snippets.

@manutuero
Created April 29, 2020 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manutuero/254ffd9e52bdc69b46c3d6d87ac0a172 to your computer and use it in GitHub Desktop.
Save manutuero/254ffd9e52bdc69b46c3d6d87ac0a172 to your computer and use it in GitHub Desktop.
Pika example config
{
"name": "pika-example",
"version": "1.0.0",
"description": "This is an empty project only used to show the default configuration for Pika pack",
"main": "index.js",
"author": "Manuel Tuero <manuel.tuero@blackbox-vision.tech>",
"license": "MIT",
"scripts": {
"link": "npm run build && npm link pkg",
"clean": "rimraf pkg",
"publish": "pika publish",
"build": "npm run clean && pika build",
"test": "jest --passWithNoTests -- -u",
"version": "npm run build"
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"rimraf": "^3.0.2"
},
"keywords": [
"pika"
],
"@pika/pack": {
"pipeline": [
["@pika/plugin-standard-pkg"],
["@pika/plugin-build-node"],
["@pika/plugin-build-web"],
["@pika/plugin-build-types"]
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment