-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.4 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.4 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
{
"name": "@linkurious/ogma-annotations-control",
"version": "2.0.4",
"description": "A tool to draw texts and arrows on top of Ogma",
"type": "module",
"scripts": {
"e2e:test": "npm run test:e2e -ws --if-present",
"test": "npm run test:unit -ws --if-present",
"e2e:deps": "vitest run -c test/vitest.config.mts",
"test:unit": "npm run test:unit -ws --if-present",
"publish:packages": "npm publish -ws",
"build": "npm run build -ws --if-present",
"package-docs": "npm run docs:build -ws --if-present",
"bump:patch": "npm version -ws --include-workspace-root --no-git-tag-version patch",
"bump:minor": "npm version -ws --include-workspace-root --no-git-tag-version minor",
"bump:major": "npm version -ws --include-workspace-root --no-git-tag-version major",
"postversion": "sync_versions",
"postpackage-docs": "node scripts/cleanup-md.mjs && node scripts/generate-ai-docs.mjs",
"docs:dev": "vitepress dev docs",
"lint:ci": "npm run lint:ci -ws",
"lint": "npm run lint -ws",
"docs:ai": "node scripts/generate-ai-docs.mjs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"predocs:build": "npm run package-docs",
"predocs:dev": "npm run package-docs",
"predocs:preview": "npm run package-docs",
"predocs:publish": "npm run docs:build",
"docs:publish": "gh-pages -t --nojekyll -d dist/docs",
"preupload": "mkdir -p tmp/github_release/ && mv *.tgz tmp/github_release/",
"upload": "npm run docs:publish"
},
"publishConfig": {
"access": "public"
},
"private": false,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Linkurious/ogma-annotations-control.git"
},
"files": [
"package.json",
"README.md",
"LICENSE"
],
"keywords": [
"Ogma",
"annotations",
"layer",
"react",
"headless"
],
"author": "Linkurious SAS",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Linkurious/ogma-annotations-control/issues"
},
"homepage": "https://github.com/Linkurious/ogma-annotations-control#readme",
"workspaces": [
"packages/core",
"packages/react"
],
"prettier": {
"printWidth": 80,
"trailingComma": "none"
},
"devDependencies": {
"@linkurious/code-tools": "^0.0.15",
"@types/node": "^20.12.7",
"gh-pages": "^6.1.1",
"vitepress": "^1.1.3"
},
"dependencies": {
"ws": "^8.18.1"
}
}