-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "@openpresentation/opf-editor",
"version": "0.0.1",
"description": "Embeddable local OPF editor primitives built on the deterministic renderer.",
"license": "MIT",
"type": "module",
"private": false,
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenPresentation/opf-editor.git"
},
"bugs": {
"url": "https://github.com/OpenPresentation/opf-editor/issues"
},
"homepage": "https://github.com/OpenPresentation/opf-editor#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"default": "./dist/react.js"
},
"./svelte": {
"types": "./dist/svelte.d.ts",
"default": "./dist/svelte.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "node scripts/build.mjs",
"typecheck": "node --check src/index.js && node --check src/react.js && node --check src/svelte.js && node --check scripts/build.mjs && node --check scripts/validate-package.mjs && node --check test/smoke.mjs && node --check test/component-smoke.mjs",
"test": "npm run build && node test/smoke.mjs && node test/component-smoke.mjs",
"validate": "node scripts/validate-package.mjs",
"prepack": "npm run build"
},
"dependencies": {
"@openpresentation/opf": "^0.2.2"
},
"peerDependencies": {
"@openpresentation/opf-render": ">=0.0.0"
},
"peerDependenciesMeta": {
"@openpresentation/opf-render": {
"optional": true
}
}
}