-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 3.5 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
{
"name": "chemcore",
"version": "1.0.0-beta.5",
"description": "An open-source chemistry structure editor focused on CDXML fidelity and Office workflows.",
"homepage": "https://dreamlovesu32.github.io/chemcore/",
"repository": {
"type": "git",
"url": "git+https://github.com/dreamlovesu32/chemcore.git"
},
"type": "module",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"scripts": {
"build:engine-wasm": "node scripts/build-engine-wasm.mjs",
"cli": "cargo run -p chemcore-cli --",
"compare:cdxml-symbol-pixels": "node scripts/compare-cdxml-symbol-pixels.mjs",
"compare:svg-pixels": "node scripts/compare-svg-pixels.mjs",
"desktop:build": "node scripts/desktop-tauri.mjs build",
"desktop:build-fast": "node scripts/desktop-tauri-fast.mjs",
"desktop:dev-fast": "node scripts/desktop-tauri-dev-fast.mjs",
"desktop:dev": "node scripts/desktop-tauri.mjs dev",
"desktop:info": "node scripts/desktop-tauri.mjs info",
"dev:engine": "node scripts/dev-engine-wasm.mjs",
"dev:viewer": "node scripts/dev-viewer.mjs",
"emf:chemdraw-oracle": "node scripts/chemdraw-oracle.mjs",
"emf:compare-oracle": "node scripts/compare-emf-oracle.mjs",
"emf:inspect": "node scripts/emf-inspect.mjs",
"emf:render-preview": "node scripts/render-emf-preview.mjs",
"examples:agent": "powershell -ExecutionPolicy Bypass -File examples/agent/run-all.ps1",
"poc:agent": "powershell -ExecutionPolicy Bypass -File examples/agent/06-reaction-poc/run.ps1",
"office:print-registration": "cargo run -p chemcore-office -- --print-registration",
"office:register-dev": "cargo run -p chemcore-office -- --register-user",
"office:serve": "cargo run -p chemcore-office -- --serve",
"office:self-test": "cargo run -p chemcore-office -- --self-test",
"office:validate-clipboard": "powershell -ExecutionPolicy Bypass -File scripts/validate-word-clipboard-paste.ps1",
"office:unregister-dev": "cargo run -p chemcore-office -- --unregister-user",
"office:validate-roundtrip": "powershell -ExecutionPolicy Bypass -File scripts/validate-word-ole-roundtrip.ps1",
"performance:cli-large": "node scripts/cli-large-performance-report.mjs",
"regression:label-anchor": "node scripts/label-anchor-regression.mjs",
"regression:large-object-operations": "node scripts/large-object-operation-regression.mjs",
"regression:large-drag-preview": "node scripts/large-drag-preview-regression.mjs",
"regression:desktop-hybrid-latency": "node scripts/desktop-hybrid-latency-regression.mjs",
"regression:stability-user-paths": "node scripts/stability-user-paths.mjs",
"regression:text-editor": "node scripts/text-editor-regression.mjs",
"regression:viewer-interactions": "node scripts/viewer-interaction-smoke.mjs",
"stability": "node scripts/stability-report.mjs",
"stability:fixtures": "node scripts/generate-stability-fixtures.mjs",
"verify": "node scripts/verify.mjs",
"screenshot": "node scripts/viewer-screenshot.mjs",
"screenshot:svg": "node scripts/viewer-svg-screenshot.mjs",
"test": "node scripts/test.mjs"
},
"keywords": [
"chemistry",
"cheminformatics",
"cdxml",
"chemdraw",
"scientific-software",
"svg",
"wasm",
"rust",
"tauri",
"office"
],
"author": "Jiajun Zhang",
"license": "Apache-2.0",
"devDependencies": {
"@tauri-apps/cli": "^2.11.0",
"opentype.js": "^2.0.0",
"playwright": "^1.59.1"
},
"dependencies": {
"@tauri-apps/api": "^2.11.0"
}
}