@stackframe/stack-cli 2.8.74 → 2.8.76
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 +5 -0
- package/package.json +12 -13
package/LICENSE
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
Stack is licensed per-package, and 100% open-source.
|
|
2
|
+
|
|
3
|
+
Generally speaking, client code and examples are licensed under an open-source MIT license, while server components are licensed under an open-source AGPLv3 license. Please refer to each package's `LICENSE` files for more information.
|
|
4
|
+
|
|
5
|
+
We also have enterprise licenses available, if you prefer; please contact [enterprise@stack-auth.com](mailto:enterprise@stack-auth.com).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackframe/stack-cli",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.76",
|
|
4
4
|
"repository": "https://github.com/stack-auth/stack-auth",
|
|
5
5
|
"description": "The CLI for Stack Auth. https://stack-auth.com",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -8,13 +8,6 @@
|
|
|
8
8
|
"bin": {
|
|
9
9
|
"stack": "./dist/index.js"
|
|
10
10
|
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"clean": "rimraf node_modules && rimraf dist",
|
|
13
|
-
"build": "tsdown",
|
|
14
|
-
"dev": "tsdown --watch",
|
|
15
|
-
"lint": "eslint --ext .tsx,.ts .",
|
|
16
|
-
"typecheck": "tsc --noEmit"
|
|
17
|
-
},
|
|
18
11
|
"files": [
|
|
19
12
|
"README.md",
|
|
20
13
|
"dist",
|
|
@@ -28,10 +21,10 @@
|
|
|
28
21
|
"dependencies": {
|
|
29
22
|
"@anthropic-ai/claude-agent-sdk": "^0.2.73",
|
|
30
23
|
"@inquirer/prompts": "^7.0.0",
|
|
31
|
-
"@stackframe/js": "workspace:*",
|
|
32
|
-
"@stackframe/stack-shared": "workspace:*",
|
|
33
24
|
"commander": "^13.1.0",
|
|
34
|
-
"jiti": "^2.4.2"
|
|
25
|
+
"jiti": "^2.4.2",
|
|
26
|
+
"@stackframe/stack-shared": "2.8.74",
|
|
27
|
+
"@stackframe/js": "2.8.74"
|
|
35
28
|
},
|
|
36
29
|
"devDependencies": {
|
|
37
30
|
"@types/node": "20.17.6",
|
|
@@ -39,5 +32,11 @@
|
|
|
39
32
|
"tsdown": "^0.20.3",
|
|
40
33
|
"typescript": "5.9.3"
|
|
41
34
|
},
|
|
42
|
-
"
|
|
43
|
-
|
|
35
|
+
"scripts": {
|
|
36
|
+
"clean": "rimraf node_modules && rimraf dist",
|
|
37
|
+
"build": "tsdown",
|
|
38
|
+
"dev": "tsdown --watch",
|
|
39
|
+
"lint": "eslint --ext .tsx,.ts .",
|
|
40
|
+
"typecheck": "tsc --noEmit"
|
|
41
|
+
}
|
|
42
|
+
}
|