@antelopejs/dms-automation 0.0.1 → 0.0.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 +21 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antelopejs/dms-automation",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,6 +27,22 @@
|
|
|
27
27
|
"provenance": true,
|
|
28
28
|
"registry": "https://registry.npmjs.org/"
|
|
29
29
|
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "pnpm --filter @antelopejs/interface-dms-automation build && rimraf dist && tsc -p tsconfig.build.json",
|
|
32
|
+
"test:frontend-registration": "pnpm run build && node --test tests/frontend-registration.test.cjs",
|
|
33
|
+
"test:release-script": "node --test tests/release-script.test.cjs",
|
|
34
|
+
"dev": "ajs project run -w -p playground",
|
|
35
|
+
"lint": "oxlint && oxfmt --check . && cd frontend-vue && pnpm lint",
|
|
36
|
+
"typecheck": "pnpm --filter @antelopejs/interface-dms-automation typecheck && tsc -p tsconfig.json",
|
|
37
|
+
"lint:fix": "oxlint --fix --max-warnings=1000000 && oxfmt . && cd frontend-vue && pnpm lint:fix",
|
|
38
|
+
"format": "oxfmt .",
|
|
39
|
+
"frontend:dev": "cd playground && pnpm frontend:dev",
|
|
40
|
+
"release": "pnpm --filter @antelopejs/interface-dms-automation build && pnpm --dir frontend-vue install --frozen-lockfile && pnpm lint && pnpm typecheck && pnpm test:frontend-registration && pnpm run verify:interface && release-it",
|
|
41
|
+
"verify:interface": "node scripts/verify-interface-package.cjs",
|
|
42
|
+
"prepack": "pnpm run build",
|
|
43
|
+
"knip": "knip --dependencies",
|
|
44
|
+
"knip:all": "knip"
|
|
45
|
+
},
|
|
30
46
|
"dependencies": {
|
|
31
47
|
"@antelopejs/interface-api": "^0.0.13",
|
|
32
48
|
"@antelopejs/interface-api-util": "^0.1.2",
|
|
@@ -35,10 +51,10 @@
|
|
|
35
51
|
"@antelopejs/interface-database": "0.1.7",
|
|
36
52
|
"@antelopejs/interface-database-decorators": ">=0.1.6 <1.0.0",
|
|
37
53
|
"@antelopejs/interface-dms": ">=0.0.1 <1.0.0",
|
|
54
|
+
"@antelopejs/interface-dms-automation": "workspace:*",
|
|
38
55
|
"defu": "^6.1.4",
|
|
39
56
|
"node-cron": "^4.2.1",
|
|
40
|
-
"zod": "^3.25.76"
|
|
41
|
-
"@antelopejs/interface-dms-automation": "0.0.1"
|
|
57
|
+
"zod": "^3.25.76"
|
|
42
58
|
},
|
|
43
59
|
"devDependencies": {
|
|
44
60
|
"@antelopejs/core": "^1.4.11",
|
|
@@ -57,25 +73,11 @@
|
|
|
57
73
|
"optionalDependencies": {
|
|
58
74
|
"@antelopejs/interface-redis": "^0.0.8"
|
|
59
75
|
},
|
|
76
|
+
"packageManager": "pnpm@10.2.0",
|
|
60
77
|
"antelopeJs": {
|
|
61
78
|
"baseUrl": "dist",
|
|
62
79
|
"implements": [
|
|
63
80
|
"@antelopejs/interface-dms-automation"
|
|
64
81
|
]
|
|
65
|
-
},
|
|
66
|
-
"scripts": {
|
|
67
|
-
"build": "pnpm --filter @antelopejs/interface-dms-automation build && rimraf dist && tsc -p tsconfig.build.json",
|
|
68
|
-
"test:frontend-registration": "pnpm run build && node --test tests/frontend-registration.test.cjs",
|
|
69
|
-
"test:release-script": "node --test tests/release-script.test.cjs",
|
|
70
|
-
"dev": "ajs project run -w -p playground",
|
|
71
|
-
"lint": "oxlint && oxfmt --check . && cd frontend-vue && pnpm lint",
|
|
72
|
-
"typecheck": "pnpm --filter @antelopejs/interface-dms-automation typecheck && tsc -p tsconfig.json",
|
|
73
|
-
"lint:fix": "oxlint --fix --max-warnings=1000000 && oxfmt . && cd frontend-vue && pnpm lint:fix",
|
|
74
|
-
"format": "oxfmt .",
|
|
75
|
-
"frontend:dev": "cd playground && pnpm frontend:dev",
|
|
76
|
-
"release": "pnpm --dir frontend-vue install --frozen-lockfile && pnpm lint && pnpm typecheck && pnpm test:frontend-registration && pnpm run verify:interface && release-it",
|
|
77
|
-
"verify:interface": "node scripts/verify-interface-package.cjs",
|
|
78
|
-
"knip": "knip --dependencies",
|
|
79
|
-
"knip:all": "knip"
|
|
80
82
|
}
|
|
81
|
-
}
|
|
83
|
+
}
|