@quikturn/logos 0.2.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/LICENSE +21 -0
- package/README.md +498 -0
- package/dist/client/index.cjs +726 -0
- package/dist/client/index.d.cts +399 -0
- package/dist/client/index.d.ts +399 -0
- package/dist/client/index.mjs +721 -0
- package/dist/index.cjs +319 -0
- package/dist/index.d.cts +437 -0
- package/dist/index.d.ts +437 -0
- package/dist/index.mjs +294 -0
- package/dist/server/index.cjs +858 -0
- package/dist/server/index.d.cts +423 -0
- package/dist/server/index.d.ts +423 -0
- package/dist/server/index.mjs +854 -0
- package/package.json +89 -0
package/package.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@quikturn/logos",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Quikturn Logo SDK — URL builder, browser client, and server client for the Quikturn Logos API",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Quikturn",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/Quikturn-PowerPoint-Add-In/Logo-SDK.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/Quikturn-PowerPoint-Add-In/Logo-SDK/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/Quikturn-PowerPoint-Add-In/Logo-SDK#readme",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"quikturn",
|
|
17
|
+
"logo",
|
|
18
|
+
"logo-api",
|
|
19
|
+
"brand-assets",
|
|
20
|
+
"sdk"
|
|
21
|
+
],
|
|
22
|
+
"type": "module",
|
|
23
|
+
"sideEffects": false,
|
|
24
|
+
"packageManager": "pnpm@10.28.1",
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=18"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"package.json",
|
|
31
|
+
"LICENSE",
|
|
32
|
+
"README.md"
|
|
33
|
+
],
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"types": {
|
|
37
|
+
"import": "./dist/index.d.ts",
|
|
38
|
+
"require": "./dist/index.d.cts"
|
|
39
|
+
},
|
|
40
|
+
"import": "./dist/index.mjs",
|
|
41
|
+
"require": "./dist/index.cjs"
|
|
42
|
+
},
|
|
43
|
+
"./client": {
|
|
44
|
+
"types": {
|
|
45
|
+
"import": "./dist/client/index.d.ts",
|
|
46
|
+
"require": "./dist/client/index.d.cts"
|
|
47
|
+
},
|
|
48
|
+
"import": "./dist/client/index.mjs",
|
|
49
|
+
"require": "./dist/client/index.cjs"
|
|
50
|
+
},
|
|
51
|
+
"./server": {
|
|
52
|
+
"types": {
|
|
53
|
+
"import": "./dist/server/index.d.ts",
|
|
54
|
+
"require": "./dist/server/index.d.cts"
|
|
55
|
+
},
|
|
56
|
+
"import": "./dist/server/index.mjs",
|
|
57
|
+
"require": "./dist/server/index.cjs"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public"
|
|
62
|
+
},
|
|
63
|
+
"main": "./dist/index.cjs",
|
|
64
|
+
"module": "./dist/index.mjs",
|
|
65
|
+
"types": "./dist/index.d.ts",
|
|
66
|
+
"scripts": {
|
|
67
|
+
"build": "tsup",
|
|
68
|
+
"test": "vitest run --project unit --project client --project server",
|
|
69
|
+
"test:integration": "vitest run --project integration",
|
|
70
|
+
"test:watch": "vitest",
|
|
71
|
+
"test:coverage": "vitest run --coverage",
|
|
72
|
+
"typecheck": "tsc --noEmit",
|
|
73
|
+
"lint": "tsc --noEmit",
|
|
74
|
+
"check": "pnpm lint && pnpm typecheck",
|
|
75
|
+
"prepublishOnly": "pnpm run build"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
79
|
+
"@semantic-release/git": "^10.0.1",
|
|
80
|
+
"@types/jsdom": "^27.0.0",
|
|
81
|
+
"@types/node": "^25.2.2",
|
|
82
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
83
|
+
"jsdom": "^28.0.0",
|
|
84
|
+
"semantic-release": "^25.0.3",
|
|
85
|
+
"tsup": "^8.5.1",
|
|
86
|
+
"typescript": "^5.9.3",
|
|
87
|
+
"vitest": "^4.0.18"
|
|
88
|
+
}
|
|
89
|
+
}
|