@grantjs/cli 1.0.0 → 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/README.md +1 -1
- package/dist/index.mjs +4160 -4140
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -13
- package/dist/{api → src/api}/client.d.ts +0 -0
- package/dist/{commands → src/commands}/config-cmd.d.ts +0 -0
- package/dist/{commands → src/commands}/generate-types-impl.d.ts +0 -0
- package/dist/{commands → src/commands}/generate-types.d.ts +0 -0
- package/dist/{commands → src/commands}/start.d.ts +0 -0
- package/dist/{commands → src/commands}/version.d.ts +0 -0
- package/dist/{config → src/config}/index.d.ts +2 -2
- /package/dist/{config → src/config}/resolve-token.d.ts +0 -0
- /package/dist/{config → src/config}/storage.d.ts +0 -0
- /package/dist/{index.d.ts → src/index.d.ts} +0 -0
- /package/dist/{types → src/types}/config.d.ts +0 -0
- /package/dist/{utils → src/utils}/package.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grantjs/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Grant CLI - Setup, authentication, and typings generation for @grantjs/server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"api-key"
|
|
30
30
|
],
|
|
31
31
|
"author": {
|
|
32
|
-
"name": "
|
|
33
|
-
"email": "ale@
|
|
34
|
-
"url": "https://
|
|
32
|
+
"name": "Ale Heredia",
|
|
33
|
+
"email": "ale@grantjs.org",
|
|
34
|
+
"url": "https://grantjs.org"
|
|
35
35
|
},
|
|
36
36
|
"repository": {
|
|
37
37
|
"type": "git",
|
|
38
|
-
"url": "https://github.com/
|
|
38
|
+
"url": "https://github.com/grant-js/grant.git",
|
|
39
39
|
"directory": "packages/@grantjs/cli"
|
|
40
40
|
},
|
|
41
41
|
"license": "MIT",
|
|
@@ -44,17 +44,17 @@
|
|
|
44
44
|
"registry": "https://registry.npmjs.org/"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"commander": "^
|
|
48
|
-
"inquirer": "^13.
|
|
47
|
+
"commander": "^14.0.3",
|
|
48
|
+
"inquirer": "^13.4.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/inquirer": "^9.0.7",
|
|
52
|
-
"@types/node": "^
|
|
53
|
-
"eslint": "^
|
|
54
|
-
"typescript": "^
|
|
55
|
-
"vite": "^
|
|
56
|
-
"vite-plugin-dts": "^
|
|
57
|
-
"vitest": "^
|
|
52
|
+
"@types/node": "^25.6.0",
|
|
53
|
+
"eslint": "^10.3.0",
|
|
54
|
+
"typescript": "^6",
|
|
55
|
+
"vite": "^8.0.10",
|
|
56
|
+
"vite-plugin-dts": "^5.0.0",
|
|
57
|
+
"vitest": "^4.1.5"
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
60
60
|
"node": ">=18.0.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { DEFAULT_PROFILE_NAME, getConfigDir, getConfigPath, getProfileConfig, listProfileNames, loadConfig, loadConfigFile, loadProfile, resolveProfileName, saveConfigFile, } from './storage.js';
|
|
2
|
-
export { resolveAccessToken } from './resolve-token.js';
|
|
3
1
|
export type { ApiKeyCredentials, GrantConfig, GrantConfigFile, GrantScope, ProfileName, SessionCredentials, } from '../types/config.js';
|
|
2
|
+
export { resolveAccessToken } from './resolve-token.js';
|
|
3
|
+
export { DEFAULT_PROFILE_NAME, getConfigDir, getConfigPath, getProfileConfig, listProfileNames, loadConfig, loadConfigFile, loadProfile, resolveProfileName, saveConfigFile, } from './storage.js';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|