@dangl/ava-model 2.25.6-add-basic-npm-pa0011
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 +3 -0
- package/dist/ava-models.d.ts +2118 -0
- package/dist/ava-models.js +3749 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/version.d.ts +8 -0
- package/dist/version.js +9 -0
- package/package.json +18 -0
- package/src/ava-models.ts +4777 -0
- package/src/index.ts +2 -0
- package/src/version.ts +10 -0
- package/tsconfig.json +12 -0
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/dist/version.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// This file is automatically generated as part of the build process
|
|
2
|
+
export const avaModelsVersion = {
|
|
3
|
+
version: "2.25.6-add-basic-npm-pa0011",
|
|
4
|
+
commitInfo: "Branch.feature-add-basic-npm-package.Sha.e6cf867b86bd5d088395ccb57690d515f48aef3c",
|
|
5
|
+
commitDate: "2025-08-06",
|
|
6
|
+
commitHash: "e6cf867b86bd5d088395ccb57690d515f48aef3c",
|
|
7
|
+
informationalVersion: "2.25.6-add-basic-npm-package.11+Branch.feature-add-basic-npm-package.Sha.e6cf867b86bd5d088395ccb57690d515f48aef3c",
|
|
8
|
+
buildDateUtc: new Date(Date.UTC(2025, 7, 6, 20, 2, 57))
|
|
9
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dangl/ava-model",
|
|
3
|
+
"version": "2.25.6-add-basic-npm-pa0011",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
9
|
+
"build": "tsc",
|
|
10
|
+
"prepare": "npm run build"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [],
|
|
13
|
+
"author": "",
|
|
14
|
+
"type": "commonjs",
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"typescript": "^5.9.2"
|
|
17
|
+
}
|
|
18
|
+
}
|