@vercel/schedules 0.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @vercel/schedules
2
+
3
+ ```sh
4
+ npm install @vercel/schedules
5
+ ```
6
+
7
+ ```ts
8
+ import { helloWorld } from '@vercel/schedules';
9
+
10
+ helloWorld();
11
+ ```
package/dist/index.cjs ADDED
@@ -0,0 +1,8 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/index.ts
2
+ function helloWorld() {
3
+ console.log("hello world");
4
+ }
5
+
6
+
7
+ exports.helloWorld = helloWorld;
8
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["/home/runner/work/schedules/schedules/packages/schedules/dist/index.cjs","../src/index.ts"],"names":[],"mappings":"AAAA;ACAO,SAAS,UAAA,CAAA,EAAmB;AACjC,EAAA,OAAA,CAAQ,GAAA,CAAI,aAAa,CAAA;AAC3B;ADEA;AACE;AACF,gCAAC","file":"/home/runner/work/schedules/schedules/packages/schedules/dist/index.cjs","sourcesContent":[null,"export function helloWorld(): void {\n console.log('hello world');\n}\n"]}
@@ -0,0 +1,3 @@
1
+ declare function helloWorld(): void;
2
+
3
+ export { helloWorld };
@@ -0,0 +1,3 @@
1
+ declare function helloWorld(): void;
2
+
3
+ export { helloWorld };
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ // src/index.ts
2
+ function helloWorld() {
3
+ console.log("hello world");
4
+ }
5
+ export {
6
+ helloWorld
7
+ };
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export function helloWorld(): void {\n console.log('hello world');\n}\n"],"mappings":";AAAO,SAAS,aAAmB;AACjC,UAAQ,IAAI,aAAa;AAC3B;","names":[]}
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@vercel/schedules",
3
+ "version": "0.0.0-alpha.0",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "The Vercel Schedules JavaScript API client",
8
+ "homepage": "https://vercel.com",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/vercel/schedules.git",
12
+ "directory": "packages/schedules"
13
+ },
14
+ "sideEffects": false,
15
+ "type": "module",
16
+ "exports": {
17
+ ".": {
18
+ "import": "./dist/index.js",
19
+ "require": "./dist/index.cjs"
20
+ }
21
+ },
22
+ "main": "./dist/index.cjs",
23
+ "module": "./dist/index.js",
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "jest": {
28
+ "preset": "ts-jest",
29
+ "testEnvironment": "node"
30
+ },
31
+ "devDependencies": {
32
+ "@types/jest": "30.0.0",
33
+ "@types/node": "24.12.2",
34
+ "jest": "30.3.0",
35
+ "ts-jest": "29.4.9",
36
+ "tsup": "8.5.1",
37
+ "tsconfig": "0.0.0"
38
+ },
39
+ "engines": {
40
+ "node": ">=20.0.0"
41
+ },
42
+ "scripts": {
43
+ "build": "tsup",
44
+ "dev": "tsup --watch --clean=false",
45
+ "check": "biome check",
46
+ "publint": "npx publint",
47
+ "test": "jest --env node",
48
+ "type-check": "tsc --noEmit"
49
+ }
50
+ }