@glenn123/pantry-test-oidc 0.0.7
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/.gitignore +31 -0
- package/cli.js +5 -0
- package/deps.yaml +5 -0
- package/index.js +1 -0
- package/package.json +29 -0
- package/pantry.lock +22 -0
package/.gitignore
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Dependencies
|
|
2
|
+
pantry_modules/
|
|
3
|
+
node_modules/
|
|
4
|
+
|
|
5
|
+
# Build output
|
|
6
|
+
dist/
|
|
7
|
+
|
|
8
|
+
# Environment variables
|
|
9
|
+
.env
|
|
10
|
+
.env.local
|
|
11
|
+
.env.*.local
|
|
12
|
+
|
|
13
|
+
# Claude Code
|
|
14
|
+
.claude/
|
|
15
|
+
|
|
16
|
+
# OS files
|
|
17
|
+
.DS_Store
|
|
18
|
+
Thumbs.db
|
|
19
|
+
|
|
20
|
+
# Editor directories
|
|
21
|
+
.idea/
|
|
22
|
+
.vscode/
|
|
23
|
+
*.swp
|
|
24
|
+
*.swo
|
|
25
|
+
|
|
26
|
+
# Logs
|
|
27
|
+
*.log
|
|
28
|
+
npm-debug.log*
|
|
29
|
+
|
|
30
|
+
# Credentials (never commit these)
|
|
31
|
+
.pantry/credentials
|
package/cli.js
ADDED
package/deps.yaml
ADDED
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const hello = () => "Hello from pantry-test!";
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@glenn123/pantry-test-oidc",
|
|
3
|
+
"version": "0.0.7",
|
|
4
|
+
"description": "Test package for pantry publish",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"bin": {
|
|
11
|
+
"pantry-test": "./dist/cli.js"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "mkdir -p dist && cp index.js dist/ && cp cli.js dist/"
|
|
15
|
+
},
|
|
16
|
+
"author": "Glenn Michael Torregosa",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/glennmichael123/pantry-test.git"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"lodash": "^4.17.23",
|
|
24
|
+
"axios": "^1.13.4",
|
|
25
|
+
"eslint": "^9.39.2",
|
|
26
|
+
"ts-cloud": "^0.1.0",
|
|
27
|
+
"chalk": "^4.1.2"
|
|
28
|
+
}
|
|
29
|
+
}
|
package/pantry.lock
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"lockfileVersion": 1,
|
|
4
|
+
"generatedAt": "1769781409",
|
|
5
|
+
"packages": {
|
|
6
|
+
"chalk@4.1.2": {
|
|
7
|
+
"name": "chalk",
|
|
8
|
+
"version": "4.1.2",
|
|
9
|
+
"source": "npm"
|
|
10
|
+
},
|
|
11
|
+
"ts-cloud@0.1.0": {
|
|
12
|
+
"name": "ts-cloud",
|
|
13
|
+
"version": "0.1.0",
|
|
14
|
+
"source": "npm"
|
|
15
|
+
},
|
|
16
|
+
"lodash@4.17.23": {
|
|
17
|
+
"name": "lodash",
|
|
18
|
+
"version": "4.17.23",
|
|
19
|
+
"source": "npm"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|