This repository was archived by the owner on Jun 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.71 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@antelopejs/data-api",
"version": "1.1.1",
"description": "A flexible DataAPI interface for antelopejs that uses the API interface",
"keywords": [
"antelopejs",
"data-api",
"rest",
"api",
"database"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AntelopeJS/data-api.git"
},
"main": "dist/index.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"packageManager": "pnpm@10.6.5",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "ajs project run -w -p playground",
"format": "biome format --write .",
"lint:fix": "biome check --write .",
"lint": "biome check .",
"typecheck": "tsc --noEmit",
"prepack": "pnpm run build",
"release": "pnpm run lint && pnpm run test && pnpm run prepack && release-it",
"test": "pnpm run build && ajs module test"
},
"antelopeJs": {
"implements": [
"@antelopejs/interface-data-api"
],
"test": "src/test/antelope.test.ts"
},
"dependencies": {
"@antelopejs/interface-api": "^0.0.3",
"@antelopejs/interface-core": "^0.0.3",
"@antelopejs/interface-data-api": "^0.1.1",
"@antelopejs/interface-database": "^0.1.1",
"@antelopejs/interface-database-decorators": "^0.1.1",
"chai": "^4.5.0",
"mocha": "^11.7.5",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.15",
"@types/semver": "^7.7.1",
"mongodb-memory-server-core": "^10.4.3",
"release-it": "^19.2.4",
"release-it-changelogen": "^0.1.0",
"rimraf": "^6.1.3",
"typescript": "^5.9.3"
}
}