@antelopejs/dms-database 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 +19 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antelopejs/dms-database",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,6 +25,22 @@
|
|
|
25
25
|
"provenance": true,
|
|
26
26
|
"registry": "https://registry.npmjs.org/"
|
|
27
27
|
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "rimraf dist && tsc -p tsconfig.build.json",
|
|
30
|
+
"dev:frontend": "pnpm frontend:dev",
|
|
31
|
+
"dev": "ajs project run -w -p playground",
|
|
32
|
+
"generate": "ajs module exports generate",
|
|
33
|
+
"lint:fix": "oxlint --fix --max-warnings=1000000 && oxfmt . && pnpm --dir frontend-vue lint:fix",
|
|
34
|
+
"lint": "oxlint && oxfmt --check . && pnpm --dir frontend-vue lint",
|
|
35
|
+
"typecheck": "tsc -p tsconfig.json",
|
|
36
|
+
"format": "oxfmt . && pnpm --dir frontend-vue format",
|
|
37
|
+
"frontend:dev": "cd playground && pnpm frontend:dev",
|
|
38
|
+
"test": "pnpm run build && ajs module test .",
|
|
39
|
+
"release": "pnpm --dir frontend-vue install --frozen-lockfile && release-it",
|
|
40
|
+
"prepack": "pnpm run build",
|
|
41
|
+
"knip": "knip --dependencies",
|
|
42
|
+
"knip:all": "knip"
|
|
43
|
+
},
|
|
28
44
|
"dependencies": {
|
|
29
45
|
"@antelopejs/interface-api": ">=0.0.13 <1.0.0",
|
|
30
46
|
"@antelopejs/interface-api-util": ">=0.1.2 <1.0.0",
|
|
@@ -55,24 +71,10 @@
|
|
|
55
71
|
"optionalDependencies": {
|
|
56
72
|
"@antelopejs/interface-dms-automation": ">=0.0.1 <1.0.0"
|
|
57
73
|
},
|
|
74
|
+
"packageManager": "pnpm@10.2.0",
|
|
58
75
|
"antelopeJs": {
|
|
59
76
|
"baseUrl": "dist",
|
|
60
77
|
"implements": [],
|
|
61
78
|
"test": "src/test/harness.ts"
|
|
62
|
-
},
|
|
63
|
-
"scripts": {
|
|
64
|
-
"build": "rimraf dist && tsc -p tsconfig.build.json",
|
|
65
|
-
"dev:frontend": "pnpm frontend:dev",
|
|
66
|
-
"dev": "ajs project run -w -p playground",
|
|
67
|
-
"generate": "ajs module exports generate",
|
|
68
|
-
"lint:fix": "oxlint --fix --max-warnings=1000000 && oxfmt . && pnpm --dir frontend-vue lint:fix",
|
|
69
|
-
"lint": "oxlint && oxfmt --check . && pnpm --dir frontend-vue lint",
|
|
70
|
-
"typecheck": "tsc -p tsconfig.json",
|
|
71
|
-
"format": "oxfmt . && pnpm --dir frontend-vue format",
|
|
72
|
-
"frontend:dev": "cd playground && pnpm frontend:dev",
|
|
73
|
-
"test": "pnpm run build && ajs module test .",
|
|
74
|
-
"release": "pnpm --dir frontend-vue install --frozen-lockfile && release-it",
|
|
75
|
-
"knip": "knip --dependencies",
|
|
76
|
-
"knip:all": "knip"
|
|
77
79
|
}
|
|
78
|
-
}
|
|
80
|
+
}
|