-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 2.73 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@antelopejs/interface-database",
"version": "0.1.4",
"description": "AntelopeJS interface for database-agnostic query operations",
"keywords": [
"antelopejs",
"interface",
"database"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AntelopeJS/interface-database.git"
},
"license": "Apache-2.0",
"packageManager": "pnpm@10.6.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"docs",
"skills"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./common": {
"types": "./dist/common.d.ts",
"default": "./dist/common.js"
},
"./datum": {
"types": "./dist/datum.d.ts",
"default": "./dist/datum.js"
},
"./query": {
"types": "./dist/query.d.ts",
"default": "./dist/query.js"
},
"./schema": {
"types": "./dist/schema.d.ts",
"default": "./dist/schema.js"
},
"./selection": {
"types": "./dist/selection.d.ts",
"default": "./dist/selection.js"
},
"./stream": {
"types": "./dist/stream.d.ts",
"default": "./dist/stream.js"
},
"./valueproxy": {
"types": "./dist/valueproxy.d.ts",
"default": "./dist/valueproxy.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && tsc",
"format": "biome format --write .",
"lint:fix": "biome check --write .",
"lint": "biome check .",
"prepack": "pnpm run build",
"release": "pnpm run lint && pnpm run prepack && release-it",
"test": "pnpm run build && ajs module test ."
},
"devDependencies": {
"@antelopejs/interface-core": ">=0.0.3 <1.0.0",
"@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",
"chai": "^4.5.0",
"fp-ts": "^2.16.0",
"io-ts": "^2.2.0",
"mongodb-memory-server-core": "^11.0.1",
"release-it": "^19.2.4",
"release-it-changelogen": "^0.1.0",
"rimraf": "^6.1.3",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@antelopejs/interface-core": ">=0.0.3 <1.0.0"
},
"publishConfig": {
"access": "public"
},
"typesVersions": {
"*": {
"common": [
"dist/common.d.ts"
],
"datum": [
"dist/datum.d.ts"
],
"query": [
"dist/query.d.ts"
],
"schema": [
"dist/schema.d.ts"
],
"selection": [
"dist/selection.d.ts"
],
"stream": [
"dist/stream.d.ts"
],
"valueproxy": [
"dist/valueproxy.d.ts"
]
}
},
"antelopeJs": {
"test": "src/antelope.test.ts",
"skills": [
"./skills"
]
}
}