@worknice/js-sdk 0.13.14 → 0.13.16
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/package.json +21 -21
package/package.json
CHANGED
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@worknice/js-sdk",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "0.13.
|
|
4
|
+
"version": "0.13.16",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "rm -rf ./dist && tsup",
|
|
9
|
+
"dev": "pnpm dev:codegen && pnpm run --stream \"/^dev:.*/\"",
|
|
10
|
+
"dev:test": "vitest",
|
|
11
|
+
"dev:tsup": "rm -rf ./dist && tsup --watch",
|
|
12
|
+
"dev:codegen": "graphql-codegen -c graphql.config.json -w",
|
|
13
|
+
"fix": "if [[ -z $TURBO_HASH ]]; then pnpm turbo fix; else exit 0; fi",
|
|
14
|
+
"fix:lint": "eslint \"src/**/*.{js,ts,tsx}\" --fix",
|
|
15
|
+
"fix:format": "prettier '**/*.{js,ts,tsx,css}' --write",
|
|
16
|
+
"gen:types": "graphql-codegen -c graphql.config.json",
|
|
17
|
+
"test": "if [[ -z $TURBO_HASH ]]; then echo 'Use `pnpm turbo test` to run tests.\n' && exit 1; else exit 0; fi",
|
|
18
|
+
"test:format": "prettier '**/*.{js,ts,tsx,css}' --check",
|
|
19
|
+
"test:lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
|
20
|
+
"test:unit": "vitest run",
|
|
21
|
+
"test:types": "tsc --noEmit --pretty"
|
|
22
|
+
},
|
|
7
23
|
"files": [
|
|
8
24
|
"dist",
|
|
9
25
|
"LICENSE"
|
|
@@ -34,11 +50,11 @@
|
|
|
34
50
|
}
|
|
35
51
|
},
|
|
36
52
|
"dependencies": {
|
|
53
|
+
"@worknice/instrumentation": "workspace:^",
|
|
54
|
+
"@worknice/utils": "workspace:^",
|
|
37
55
|
"dedent": "^0.7.0",
|
|
38
56
|
"uuid": "^11.0.5",
|
|
39
|
-
"zod": "^4.1.4"
|
|
40
|
-
"@worknice/instrumentation": "^0.0.0",
|
|
41
|
-
"@worknice/utils": "^0.6.52"
|
|
57
|
+
"zod": "^4.1.4"
|
|
42
58
|
},
|
|
43
59
|
"devDependencies": {
|
|
44
60
|
"@anolilab/semantic-release-pnpm": "^1.1.10",
|
|
@@ -69,21 +85,5 @@
|
|
|
69
85
|
"peerDependencies": {
|
|
70
86
|
"currency.js": "^2.0.4",
|
|
71
87
|
"temporal-polyfill": "^0.2.1"
|
|
72
|
-
},
|
|
73
|
-
"scripts": {
|
|
74
|
-
"build": "rm -rf ./dist && tsup",
|
|
75
|
-
"dev": "pnpm dev:codegen && pnpm run --stream \"/^dev:.*/\"",
|
|
76
|
-
"dev:test": "vitest",
|
|
77
|
-
"dev:tsup": "rm -rf ./dist && tsup --watch",
|
|
78
|
-
"dev:codegen": "graphql-codegen -c graphql.config.json -w",
|
|
79
|
-
"fix": "if [[ -z $TURBO_HASH ]]; then pnpm turbo fix; else exit 0; fi",
|
|
80
|
-
"fix:lint": "eslint \"src/**/*.{js,ts,tsx}\" --fix",
|
|
81
|
-
"fix:format": "prettier '**/*.{js,ts,tsx,css}' --write",
|
|
82
|
-
"gen:types": "graphql-codegen -c graphql.config.json",
|
|
83
|
-
"test": "if [[ -z $TURBO_HASH ]]; then echo 'Use `pnpm turbo test` to run tests.\n' && exit 1; else exit 0; fi",
|
|
84
|
-
"test:format": "prettier '**/*.{js,ts,tsx,css}' --check",
|
|
85
|
-
"test:lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
|
86
|
-
"test:unit": "vitest run",
|
|
87
|
-
"test:types": "tsc --noEmit --pretty"
|
|
88
88
|
}
|
|
89
|
-
}
|
|
89
|
+
}
|