-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.66 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
{
"name": "@celldl/metadata",
"version": "1.20260822.0",
"author": {
"name": "David Brooks",
"email": "d.brooks@auckland.ac.nz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CellDL/metadata.git"
},
"module": "dist/metadata.es.js",
"dependencies": {
"@celldl/rdf": "^1.20260822.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/node": "^25.0.9",
"@typescript/typescript6": "^6.0.2",
"typescript": "^7.0.2",
"typescript-6": "npm:typescript@^6.0.3",
"vite": "^8.2.0",
"vite-plugin-dts": "^5.0.3"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/metadata.es.js"
}
},
"bugs": {
"url": "https://github.com/CellDL/metadata/issues"
},
"description": "RDF metadata for CellDL.",
"files": [
"dist",
"README.md",
"LICENSE.txt"
],
"keywords": [
"celldl",
"bg-rdf"
],
"license": "Apache-2.0",
"productName": "metadata",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "vite build --config vite.config.ts",
"clean": "bun scripts/clean.js",
"format": "bunx --bun biome format --fix --max-diagnostics=none",
"format:check": "bunx --bun biome format --max-diagnostics=none",
"lint": "bunx --bun biome lint --fix --error-on-warnings --max-diagnostics=none",
"version:new": "bun scripts/version.js"
},
"type": "module",
"types": "dist/index.d.ts"
}