0.1.0
This commit is contained in:
parent
6ecb366919
commit
e55b84feba
5 changed files with 11 additions and 7 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,2 @@
|
|||
build/
|
||||
dist/
|
||||
node_modules/
|
||||
|
|
0
.npmignore
Normal file
0
.npmignore
Normal file
|
@ -82,4 +82,4 @@
|
|||
</form>
|
||||
</section>
|
||||
|
||||
<script type="module" src="../build/demo/demo.js"></script>
|
||||
<script type="module" src="../dist/demo/demo.js"></script>
|
||||
|
|
10
package.json
10
package.json
|
@ -1,10 +1,11 @@
|
|||
{
|
||||
"name": "hyperpop",
|
||||
"version": "0.0.0",
|
||||
"name": "@suttyweb/hyperpop",
|
||||
"version": "0.1.0",
|
||||
"description": "Un cliente de API de https://github.com/TangoSoftware/ApiTiendas",
|
||||
"main": "index.js",
|
||||
"license": "SEE LICENSE IN LICENSE",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"prepublish": "tsc",
|
||||
"watch-build": "tsc --watch",
|
||||
"format": "prettier --write .",
|
||||
"check-format": "prettier --check .",
|
||||
|
@ -19,7 +20,8 @@
|
|||
"api"
|
||||
],
|
||||
"author": "Sutty <hi@sutty.nl>",
|
||||
"license": "SEE LICENSE IN LICENSE",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"devDependencies": {
|
||||
"prettier": "^2.4.1",
|
||||
"typescript": "^4.4.3"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"module": "es6",
|
||||
"moduleResolution": "node",
|
||||
|
||||
"outDir": "./build",
|
||||
"outDir": "./dist",
|
||||
|
||||
"allowJs": false,
|
||||
|
||||
|
@ -15,6 +15,8 @@
|
|||
|
||||
"strict": true,
|
||||
|
||||
"declaration": true,
|
||||
|
||||
"skipLibCheck": true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue