@localazy/cdn-client 1.1.1
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 +51 -0
- package/dist/cjs/localazy-cdn.cjs +2487 -0
- package/dist/cjs/localazy-cdn.cjs.map +1 -0
- package/dist/cjs/localazy-cdn.min.cjs +2 -0
- package/dist/cjs/localazy-cdn.min.cjs.map +1 -0
- package/dist/index.d.ts +465 -0
- package/dist/localazy-cdn.js +2487 -0
- package/dist/localazy-cdn.js.map +1 -0
- package/dist/localazy-cdn.min.js +6 -0
- package/dist/localazy-cdn.min.js.map +1 -0
- package/dist/umd/localazy-cdn.umd.cjs +2490 -0
- package/dist/umd/localazy-cdn.umd.cjs.map +1 -0
- package/dist/umd/localazy-cdn.umd.min.cjs +2 -0
- package/dist/umd/localazy-cdn.umd.min.cjs.map +1 -0
- package/package.json +96 -0
package/package.json
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@localazy/cdn-client",
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"description": "Node.js module that allows you to easily interact with the Localazy CDN.",
|
|
5
|
+
"author": "Localazy <team@localazy.com>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/localazy/cdn-client"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/localazy/cdn-client/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/localazy/cdn-client#readme",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"Localazy",
|
|
17
|
+
"Localazy CDN",
|
|
18
|
+
"CDN",
|
|
19
|
+
"TypeScript",
|
|
20
|
+
"internationalization",
|
|
21
|
+
"translation",
|
|
22
|
+
"localization",
|
|
23
|
+
"globalization",
|
|
24
|
+
"i18n",
|
|
25
|
+
"t9n",
|
|
26
|
+
"l10n",
|
|
27
|
+
"g11n"
|
|
28
|
+
],
|
|
29
|
+
"type": "module",
|
|
30
|
+
"module": "./dist/localazy-cdn.min.js",
|
|
31
|
+
"main": "./dist/cjs/localazy-cdn.min.cjs",
|
|
32
|
+
"unpkg": "./dist/umd/localazy-cdn.umd.min.cjs",
|
|
33
|
+
"types": "./dist/index.d.ts",
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"import": {
|
|
37
|
+
"default": "./dist/localazy-cdn.js",
|
|
38
|
+
"types": "./dist/index.d.ts"
|
|
39
|
+
},
|
|
40
|
+
"require": {
|
|
41
|
+
"default": "./dist/cjs/localazy-cdn.cjs",
|
|
42
|
+
"types": "./dist/index.d.ts"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"dist/**/*",
|
|
48
|
+
"README.md"
|
|
49
|
+
],
|
|
50
|
+
"scripts": {
|
|
51
|
+
"dev": "vite & npm run main-ts:watch",
|
|
52
|
+
"build": "rimraf dist && npm run main-ts:build && vite build",
|
|
53
|
+
"main-ts:build": "reexport src/main.ts",
|
|
54
|
+
"main-ts:watch": "reexport --watch src/main.ts",
|
|
55
|
+
"check": "npm run typecheck && npm run test:coverage && npm run lint",
|
|
56
|
+
"typecheck": "npx tsc --noemit",
|
|
57
|
+
"test": "vitest",
|
|
58
|
+
"test:coverage": "vitest run --coverage",
|
|
59
|
+
"test:ui": "vitest --ui",
|
|
60
|
+
"test:debug": "vitest --inspect-brk --no-file-parallelism",
|
|
61
|
+
"lint": "bash -c 'eslint --ext .ts,.js,.mjs,.cjs --ignore-path <(cat .gitignore .eslintignore) .'",
|
|
62
|
+
"lint:fix": "npm run lint -- --fix",
|
|
63
|
+
"typedoc": "npm run docs:html && npm run docs:md",
|
|
64
|
+
"typedoc:html": "rimraf typedoc/html/* && typedoc --plugin typedoc-plugin-missing-exports --tsconfig tsconfig.typedoc.json --out typedoc/html src/main.ts",
|
|
65
|
+
"typedoc:md": "rimraf typedoc/md/* && typedoc --plugin typedoc-plugin-markdown --plugin typedoc-plugin-missing-exports --tsconfig tsconfig.typedoc.json --out typedoc/md src/main.ts"
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"axios": "^1.6.7",
|
|
69
|
+
"lodash": "^4.17.21"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@localazy/conventional-changelog-preset": "github:localazy/conventional-changelog-preset",
|
|
73
|
+
"@types/lodash": "^4.17.0",
|
|
74
|
+
"@types/node": "^20.11.26",
|
|
75
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
76
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
77
|
+
"@vitest/coverage-v8": "^1.3.1",
|
|
78
|
+
"@vitest/ui": "^1.3.1",
|
|
79
|
+
"axios-mock-adapter": "^1.22.0",
|
|
80
|
+
"conventional-changelog": "^5.1.0",
|
|
81
|
+
"conventional-changelog-cli": "^4.1.0",
|
|
82
|
+
"conventional-changelog-writer": "github:localazy/conventional-changelog-writer",
|
|
83
|
+
"conventional-recommended-bump": "^9.0.0",
|
|
84
|
+
"eslint": "^8.57.0",
|
|
85
|
+
"eslint-config-airbnb-base": "^15.0.0",
|
|
86
|
+
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
87
|
+
"reexport": "^1.4.1",
|
|
88
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
89
|
+
"typedoc": "^0.25.12",
|
|
90
|
+
"typedoc-plugin-markdown": "^3.17.1",
|
|
91
|
+
"typedoc-plugin-missing-exports": "^2.2.0",
|
|
92
|
+
"vite": "^5.1.6",
|
|
93
|
+
"vite-plugin-dts": "^3.7.3",
|
|
94
|
+
"vitest": "^1.3.1"
|
|
95
|
+
}
|
|
96
|
+
}
|