astro-tokenkit 1.0.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/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "astro-tokenkit",
3
+ "version": "1.0.0",
4
+ "description": "A powerful API client for Astro with automatic token rotation, session management, and seamless context integration.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "keywords": [
19
+ "astro",
20
+ "astro-integration",
21
+ "auth",
22
+ "token",
23
+ "jwt",
24
+ "api-client",
25
+ "refresh-token",
26
+ "middleware"
27
+ ],
28
+ "dependencies": {},
29
+ "peerDependencies": {
30
+ "astro": "^4.0.0 || ^5.0.0"
31
+ },
32
+ "devDependencies": {
33
+ "@rollup/plugin-node-resolve": "^16.0.3",
34
+ "@rollup/plugin-typescript": "^12.3.0",
35
+ "@types/node": "^20.11.0",
36
+ "rimraf": "^6.0.1",
37
+ "rollup": "^4.56.0",
38
+ "tslib": "^2.8.1",
39
+ "typescript": "^5.3.3",
40
+ "vitest": "^1.2.1"
41
+ },
42
+ "private": false,
43
+ "license": "MIT",
44
+ "publishConfig": {
45
+ "registry": "https://registry.npmjs.org/"
46
+ },
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "git+https://github.com/oamm/astro-tokenkit.git"
50
+ },
51
+ "bugs": {
52
+ "url": "https://github.com/oamm/astro-tokenkit/issues"
53
+ },
54
+ "homepage": "https://github.com/oamm/astro-tokenkit#readme",
55
+ "scripts": {
56
+ "build": "tsc --project tsconfig.json",
57
+ "types:bundle": "rollup -c rollup.config.mjs",
58
+ "clean": "rimraf dist",
59
+ "dev": "tsc --watch --project tsconfig.json",
60
+ "test": "vitest run",
61
+ "test:watch": "vitest",
62
+ "test:coverage": "vitest run --coverage",
63
+ "bench": "vitest bench run bench/"
64
+ }
65
+ }