@artisan-commerce/types 0.1.0-canary.148.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +93 -0
  2. package/dist/bundle.d.ts +3811 -0
  3. package/package.json +42 -0
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@artisan-commerce/types",
3
+ "description": "Artisn's types and interfaces library",
4
+ "type": "module",
5
+ "version": "0.1.0-canary.148.1",
6
+ "types": "./dist/bundle.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "sideEffects": false,
11
+ "scripts": {
12
+ "compile": "rollup -c",
13
+ "dev": "yarn compile -w",
14
+ "clean": "rimraf dist",
15
+ "prebuild": "yarn clean",
16
+ "build": "yarn compile",
17
+ "check-types": "tsc --noEmit",
18
+ "lint": "eslint --ignore-path .gitignore --ext .ts,.tsx .",
19
+ "prettier": "prettier --ignore-path .gitignore \"**/*.+(ts|tsx)\"",
20
+ "format": "yarn prettier --write",
21
+ "check-format": "yarn prettier --list-different",
22
+ "validate": "cross-env CI=true npm-run-all --parallel check-types check-format lint build",
23
+ "validate:ci": "npm-run-all --parallel check-types check-format lint"
24
+ },
25
+ "author": "Luis Eduardo Andrade",
26
+ "license": "MIT",
27
+ "gitHead": "6eba4472f02d97014a030d651610de6e3ebcfbed",
28
+ "nx": {
29
+ "targets": {
30
+ "build": {
31
+ "outputs": [
32
+ "{projectRoot}/dist"
33
+ ]
34
+ },
35
+ "compile": {
36
+ "outputs": [
37
+ "{projectRoot}/dist"
38
+ ]
39
+ }
40
+ }
41
+ }
42
+ }