-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 6.11 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 6.11 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@tryagaindev/litefold-calendar",
"version": "0.5.0-alpha.0",
"description": "A dependency-free, mobile-first, accessible calendar component.",
"private": false,
"type": "module",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tryagaindev/litefold-calendar.git"
},
"bugs": {
"url": "https://github.com/tryagaindev/litefold-calendar/issues"
},
"homepage": "https://github.com/tryagaindev/litefold-calendar#readme",
"keywords": [
"accessible",
"calendar",
"dependency-free",
"fullcalendar-alternative",
"month-calendar",
"typescript",
"vanilla-js"
],
"packageManager": "npm@12.0.2",
"devEngines": {
"runtime": {
"name": "node",
"version": "24.x",
"onFail": "warn"
},
"packageManager": {
"name": "npm",
"version": ">=11.0.0",
"onFail": "warn"
}
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./extensions/webmcp": {
"types": "./dist/extensions/webmcp/index.d.ts",
"import": "./dist/extensions/webmcp/index.js",
"default": "./dist/extensions/webmcp/index.js"
},
"./styles.css": {
"types": "./dist/styles.css.d.ts",
"default": "./dist/styles.css"
}
},
"types": "./dist/index.d.ts",
"style": "./dist/styles.css",
"sideEffects": [
"./dist/styles.css"
],
"scripts": {
"build": "node scripts/build.mjs",
"build:examples": "node scripts/build-examples.mjs",
"build:examples:advanced": "node scripts/build-advanced-example.mjs",
"build:package": "node scripts/build-package.mjs",
"check": "npm run check:static && npm run test:unit && npm run build && npm run test:examples:built && npm run test:browser:built && npm run check:screenshots && npm run check:tarball",
"check:fast": "npm run check:static && npm run test:unit && npm run build && npm run test:examples:built && npm run check:screenshots && npm run check:tarball",
"check:design": "designmd lint DESIGN.md",
"check:distribution": "npm run build && npm run typecheck:examples:built && npm run test:examples:built && npm run check:tarball",
"check:docs": "node scripts/check-docs.mjs",
"check:ownership": "node scripts/check-ownership.mjs",
"check:package": "node scripts/check-package-policy.mjs --built --pack",
"check:policy": "node scripts/check-package-policy.mjs",
"check:sbom": "node scripts/check-sbom.mjs",
"check:screenshots": "node scripts/check-screenshots.mjs",
"check:static": "npm run check:license && npm run check:policy && npm run check:docs && npm run check:ownership && npm run check:design && npm run lint && npm run test:tooling && npm run typecheck && npm run typecheck:examples",
"check:tarball": "node scripts/pack-release.mjs --verify-only",
"clean": "node scripts/clean.mjs",
"demo": "npm run build && npm run serve:repository",
"lint": "npm run lint:ts && npm run lint:styles",
"lint:styles": "stylelint \"src/**/*.css\" \"examples/**/*.css\" \"scripts/pages-site/*.css\"",
"lint:ts": "eslint .",
"measure:dynamic-events": "npm run build:package && node scripts/measure-dynamic-event-updates.mjs",
"measure:workflows": "npm run build:package && node scripts/measure-calendar-workflows.mjs",
"package": "node scripts/pack-release.mjs",
"release:prepare": "node scripts/prepare-release.mjs",
"release:verify": "node scripts/check-release-ready.mjs",
"screenshots:update": "npm run build:package && npm run build:examples:advanced && node scripts/update-screenshots.mjs",
"serve:repository": "node scripts/serve-repository.mjs",
"test": "npm run test:unit && npm run test:examples",
"test:browser": "npm run build && npm run test:browser:built",
"test:browser:install": "playwright install chromium firefox webkit",
"test:browser:built": "playwright test",
"test:browser:chromium": "npm run build && playwright test --project=chromium",
"test:browser:firefox": "npm run build && playwright test --project=firefox",
"test:browser:webkit": "npm run build && playwright test --project=webkit",
"test:examples": "npm run build && npm run test:examples:built",
"test:examples:built": "node scripts/run-advanced-smoke.mjs",
"test:tooling": "node --test scripts/tests/build-pages.test.mjs scripts/tests/calendar-workflow-measurement.test.mjs scripts/tests/check-sbom.test.mjs scripts/tests/dynamic-update-measurement.test.mjs scripts/tests/example-metadata.test.mjs scripts/tests/markdown-diagrams.test.mjs scripts/tests/markdown-heading.test.mjs scripts/tests/node-version.test.mjs scripts/tests/ownership.test.mjs scripts/tests/package-entries.test.mjs scripts/tests/packed-extension-verification.test.mjs scripts/tests/publish-alpha-policy.test.mjs scripts/tests/release-artifacts.test.mjs scripts/tests/release-state.test.mjs scripts/tests/screenshot-contract.test.mjs scripts/tests/semver.test.mjs scripts/tests/serve-repository.test.mjs scripts/tests/styles.test.mjs scripts/tests/workflow-contracts.test.mjs",
"test:unit": "node scripts/run-unit-tests.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"typecheck:examples": "npm run build:package && npm run typecheck:examples:built",
"typecheck:examples:built": "tsc -p examples/advanced/tsconfig.json --noEmit",
"check:license": "node scripts/check-license.mjs"
},
"devDependencies": {
"@axe-core/playwright": "4.13.0",
"@eslint/js": "10.0.1",
"@google/design.md": "0.4.0",
"@playwright/test": "1.62.1",
"@types/jsdom": "30.0.0",
"@types/node": "24.13.3",
"esbuild": "0.28.2",
"eslint": "10.10.0",
"globals": "17.12.0",
"jsdom": "30.0.1",
"mdast-util-from-markdown": "2.0.3",
"parse5": "8.0.1",
"semver": "7.8.5",
"stylelint": "17.15.0",
"stylelint-config-standard": "40.0.0",
"typescript": "6.0.3",
"typescript-eslint": "8.69.0"
},
"publishConfig": {
"access": "public",
"provenance": true,
"tag": "alpha"
}
}