@witchcraft/expressit 0.1.1 → 0.1.2
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 +2 -4
- package/dist/package.json.js +7 -4
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
|
|
2
1
|
### 🚧 WORK IN PROGRESS 🚧
|
|
3
|
-
|
|
4
|
-

|
|
2
|
+
[](https://github.com/witchcraftjs/expressit/actions/workflows/build.yml)
|
|
3
|
+
[](https://github.com/witchcraftjs/expressit/actions/workflows/docs.yml)
|
|
6
4
|
[](https://www.npmjs.com/@witchcraft/expressit)
|
|
7
5
|
|
|
8
6
|
Expressit is a blazing fast, customizable, error-tolerant expression parser that creates safe to eval expressions + a few other goodies.
|
package/dist/package.json.js
CHANGED
|
@@ -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.
|
|
3
|
+
const version = "0.1.2";
|
|
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
|
|
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.
|
|
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.
|
|
4
|
+
"version": "0.1.2",
|
|
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
|
|
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.
|
|
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",
|