@witchcraft/expressit 0.1.1 → 0.1.3

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.
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
-
2
1
  ### 🚧 WORK IN PROGRESS 🚧
3
-
4
- ![Docs](https://github.com/witchcraftjs/expressit/actions/workflows/docs.yml/badge.svg)
5
- ![Build](https://github.com/witchcraftjs/expressit/actions/workflows/build.yml/badge.svg)
6
- [![Release](https://github.com/witchcraftjs/expressit/actions/workflows/release.yml/badge.svg)](https://www.npmjs.com/@witchcraft/expressit)
2
+ [![NPM Version (with latest tag)](https://img.shields.io/npm/v/%40witchcraft%2Fexpressit/latest)](https://www.npmjs.com/package/@witchcraft/expressit/v/latest)
3
+ [![NPM Version (with beta tag)](https://img.shields.io/npm/v/%40witchcraft%2Fexpressit/beta)](https://www.npmjs.com/package/@witchcraft/expressit/v/beta)
4
+ [![Build](https://github.com/witchcraftjs/expressit/actions/workflows/build.yml/badge.svg)](https://github.com/witchcraftjs/expressit/actions/workflows/build.yml)
5
+ [![Docs](https://github.com/witchcraftjs/expressit/workflows/Docs/badge.svg)](https://github.com/witchcraftjs/expressit/actions/workflows/docs.yml)
6
+ [![Release](https://github.com/witchcraftjs/expressit/actions/workflows/release.yml/badge.svg)](https://github.com/witchcraftjs/expressit/actions/workflows/release.yml)
7
7
 
8
8
  Expressit is a blazing fast, customizable, error-tolerant expression parser that creates safe to eval expressions + a few other goodies.
9
9
 
@@ -1,9 +1,10 @@
1
1
  const name = "@witchcraft/expressit";
2
2
  const description = "A blazing fast, customizable, error-tolerant expression parser that creates safe to eval expressions + a few other goodies like autocomplete.";
3
- const version = "0.1.1";
3
+ const version = "0.1.3";
4
4
  const types = "./dist/index.d.ts";
5
5
  const type = "module";
6
6
  const module = "./dist/index.js";
7
+ const sideEffects = false;
7
8
  const exports = {
8
9
  ".": {
9
10
  types: "./dist/index.d.ts",
@@ -83,16 +84,16 @@ const scripts = {
83
84
  prepare: "husky && npm run build"
84
85
  };
85
86
  const dependencies = {
86
- "@alanscodelog/utils": "4.0.0-beta.17"
87
+ "@alanscodelog/utils": "^4.0.0"
87
88
  };
88
89
  const devDependencies = {
89
90
  "@alanscodelog/commitlint-config": "^3.0.1",
90
- "@alanscodelog/eslint-config": "5.0.0-beta.2",
91
+ "@alanscodelog/eslint-config": "5.0.0-beta.3",
91
92
  "@alanscodelog/semantic-release-config": "^4.1.2",
92
93
  "@alanscodelog/tsconfigs": "^4.0.1",
94
+ "@commitlint/cli": "^19.3.0",
93
95
  "@types/node": "^20.4.1",
94
96
  "@vitest/coverage-v8": "^1.6.0",
95
- commitlint: "^19.3.0",
96
97
  concurrently: "^8.2.0",
97
98
  "cross-env": "^7.0.3",
98
99
  "fast-glob": "^3.3.1",
@@ -151,6 +152,7 @@ const pkg = {
151
152
  types,
152
153
  type,
153
154
  module,
155
+ sideEffects,
154
156
  exports,
155
157
  scripts,
156
158
  dependencies,
@@ -193,6 +195,7 @@ export {
193
195
  release,
194
196
  repository,
195
197
  scripts,
198
+ sideEffects,
196
199
  type,
197
200
  types,
198
201
  version
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@witchcraft/expressit",
3
3
  "description": "A blazing fast, customizable, error-tolerant expression parser that creates safe to eval expressions + a few other goodies like autocomplete.",
4
- "version": "0.1.1",
4
+ "version": "0.1.3",
5
5
  "types": "./dist/index.d.ts",
6
6
  "type": "module",
7
7
  "module": "./dist/index.js",
8
+ "sideEffects": false,
8
9
  "exports": {
9
10
  ".": {
10
11
  "types": "./dist/index.d.ts",
@@ -84,16 +85,16 @@
84
85
  "prepare": "husky && npm run build"
85
86
  },
86
87
  "dependencies": {
87
- "@alanscodelog/utils": "4.0.0-beta.17"
88
+ "@alanscodelog/utils": "^4.0.0"
88
89
  },
89
90
  "devDependencies": {
90
91
  "@alanscodelog/commitlint-config": "^3.0.1",
91
- "@alanscodelog/eslint-config": "5.0.0-beta.2",
92
+ "@alanscodelog/eslint-config": "5.0.0-beta.3",
92
93
  "@alanscodelog/semantic-release-config": "^4.1.2",
93
94
  "@alanscodelog/tsconfigs": "^4.0.1",
95
+ "@commitlint/cli": "^19.3.0",
94
96
  "@types/node": "^20.4.1",
95
97
  "@vitest/coverage-v8": "^1.6.0",
96
- "commitlint": "^19.3.0",
97
98
  "concurrently": "^8.2.0",
98
99
  "cross-env": "^7.0.3",
99
100
  "fast-glob": "^3.3.1",