-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 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
{
"type": "module",
"name": "@nfdi4plants/arcquerymodel",
"version": "3.0.0-alpha.2",
"description": "Top level ARC DataModel and API function descriptions.",
"repository": {
"type": "git",
"url": "git+https://github.com/nfdi4plants/ARCtrl.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/nfdi4plants/ARCtrl/issues"
},
"homepage": "https://github.com/nfdi4plants/ARCtrl#readme",
"author": "Heinrich Lukas Weil <weil@rptu.de> (https://github.com/HLWeil)",
"contributors": [
"Kevin Frey <Freymaurer@gmx.de> (https://github.com/Freymaurer)"
],
"main": "./dist/ts/index.js",
"module": "./dist/ts/index.js",
"types": "./dist/ts/index.d.ts",
"exports": {
".": {
"types": "./dist/ts/index.d.ts",
"import": "./dist/ts/index.js",
"require": "./dist/ts/index.js"
},
"./*": {
"types": "./dist/ts/ts/*.d.ts",
"import": "./dist/ts/ts/*.js",
"require": "./dist/ts/ts/*.js"
}
},
"private": false,
"files": [
"dist/ts"
],
"scripts": {
"build": "vite build"
},
"dependencies": {
"@nfdi4plants/arctrl": "3.0.0-beta.15"
},
"devDependencies": {
"jsonschema": "^1.4.1",
"typescript": "~5.8.3",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.1.1"
}
}