q2-tecton-platform 1.67.0 → 1.67.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/package.json
CHANGED
|
@@ -1,47 +1,49 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
2
|
+
"name": "q2-tecton-platform",
|
|
3
|
+
"version": "1.67.2",
|
|
4
|
+
"description": "This library is the \"server\" in the \"client/server\" pair of the SDK and Platform. Responsible for booting modules and responding to requests from the SDK.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Q2 Tecton Team",
|
|
7
|
+
"main": "./dist/umd/q2-tecton-platform.js",
|
|
8
|
+
"types": "./dist/esm/index.d.ts",
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "pnpm build:prod",
|
|
18
|
+
"build:dev": "rm -rf dist && pnpm build:types && pnpm build:umd --mode development",
|
|
19
|
+
"build:prerelease": "rm -rf dist && pnpm build:types && pnpm build:umd --mode development",
|
|
20
|
+
"build:prod": "rm -rf dist && pnpm build:types && pnpm build:umd --mode production",
|
|
21
|
+
"build:types": "tsc --project tsconfig.prod.json && resolve-tspaths",
|
|
22
|
+
"build:umd": "webpack",
|
|
23
|
+
"build:watch": "rm -rf dist && pnpm build:types && webpack serve --mode development",
|
|
24
|
+
"build:linked": "pnpm build:types && webpack serve --mode none",
|
|
25
|
+
"clean": "rm -rf dist",
|
|
26
|
+
"nom": "rm -rf node_modules",
|
|
27
|
+
"docs": "typedoc --out docs/ src/ --module amd --target ES6",
|
|
28
|
+
"lint": "eslint --config eslint.config.cli.mjs .",
|
|
29
|
+
"lint:fix": "eslint --fix --config eslint.config.cli.mjs .",
|
|
30
|
+
"problems": "tsc --noEmit",
|
|
31
|
+
"test": "npx playwright test",
|
|
32
|
+
"test:coverage": "rm -rf .nyc_output && COVERAGE=true npx playwright test && nyc report",
|
|
33
|
+
"coverage:report": "nyc report",
|
|
34
|
+
"test:dev": "playwright test --ui"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"babel-plugin-istanbul": "^7.0.0",
|
|
38
|
+
"copy-webpack-plugin": "^14.0.0",
|
|
39
|
+
"dry-suite": "1.67.2",
|
|
40
|
+
"maybe-not": "~1.3.3",
|
|
41
|
+
"nyc": "^17.0.0",
|
|
42
|
+
"q2-tecton-common": "1.67.2",
|
|
43
|
+
"resolve-tspaths": "0.8.23",
|
|
44
|
+
"webpack-bundle-analyzer": "5.3.0",
|
|
45
|
+
"webpack-dev-server": "5.2.3"
|
|
46
|
+
},
|
|
47
|
+
"packageManager": "pnpm@10.27.0",
|
|
48
|
+
"gitHead": "d8df24f41ffd3793f99ac91bfbf8587f1af7eabf"
|
|
49
|
+
}
|