-
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 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 3 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": "@opentechevents/schema",
"version": "0.5.0",
"description": "JSON Schemas for OTE Spec — an open specification for tech community events",
"type": "module",
"license": "MIT",
"homepage": "https://opentechevents.org",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenTechEvents/opentechevents-spec.git"
},
"bugs": "https://github.com/OpenTechEvents/opentechevents-spec/issues",
"keywords": [
"opentechevents",
"ote",
"events",
"json-schema",
"meetup",
"conference",
"ical"
],
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./v0.1/event.schema.json": "./spec/v0.1/event.schema.json",
"./v0.1/feed.schema.json": "./spec/v0.1/feed.schema.json",
"./v0.2/event.schema.json": "./spec/v0.2/event.schema.json",
"./v0.2/feed.schema.json": "./spec/v0.2/feed.schema.json",
"./v0.3/event.schema.json": "./spec/v0.3/event.schema.json",
"./v0.3/feed.schema.json": "./spec/v0.3/feed.schema.json",
"./v0.3/event.recommended.schema.json": "./spec/v0.3/event.recommended.schema.json",
"./v0.3/feed.recommended.schema.json": "./spec/v0.3/feed.recommended.schema.json",
"./v0.4/event.schema.json": "./spec/v0.4/event.schema.json",
"./v0.4/feed.schema.json": "./spec/v0.4/feed.schema.json",
"./v0.4/event.recommended.schema.json": "./spec/v0.4/event.recommended.schema.json",
"./v0.4/feed.recommended.schema.json": "./spec/v0.4/feed.recommended.schema.json",
"./v0.5/event.schema.json": "./spec/v0.5/event.schema.json",
"./v0.5/feed.schema.json": "./spec/v0.5/feed.schema.json",
"./v0.5/event.recommended.schema.json": "./spec/v0.5/event.recommended.schema.json",
"./v0.5/feed.recommended.schema.json": "./spec/v0.5/feed.recommended.schema.json"
},
"files": [
"index.js",
"index.d.ts",
"language-subtags.json",
"spec/v0.1/*.json",
"spec/v0.1/README.md",
"spec/v0.2/*.json",
"spec/v0.2/README.md",
"spec/v0.3/*.json",
"spec/v0.3/README.md",
"spec/v0.4/*.json",
"spec/v0.4/README.md",
"spec/v0.5/*.json",
"spec/v0.5/README.md"
],
"scripts": {
"dev": "node scripts/serve.mjs",
"validate": "node scripts/validate.mjs",
"scan-extensions": "node scripts/scan-extensions.mjs",
"build-reference": "node scripts/build-reference.mjs",
"build-examples": "node scripts/build-examples.mjs",
"build-llms": "node scripts/build-llms.mjs",
"publish-schemas": "mkdir -p docs/schema/v0.1 docs/schema/v0.2 docs/schema/v0.3 docs/schema/v0.4 docs/schema/v0.5 && cp spec/v0.1/*.schema.json docs/schema/v0.1/ && cp spec/v0.2/*.schema.json docs/schema/v0.2/ && cp spec/v0.3/*.schema.json docs/schema/v0.3/ && cp spec/v0.4/*.schema.json docs/schema/v0.4/ && cp spec/v0.5/*.schema.json docs/schema/v0.5/",
"prepublishOnly": "npm run validate"
},
"devDependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1"
},
"publishConfig": {
"access": "public"
}
}