|
1 | 1 | { |
2 | | - "name": "adminforth-sso-auth", |
| 2 | + "name": "@adminforth/sso-auth", |
3 | 3 | "version": "1.0.0", |
4 | | - "main": "index.ts", |
| 4 | + "main": "dist/index.js", |
| 5 | + "types": "dist/index.d.ts", |
5 | 6 | "scripts": { |
6 | | - "prepare": "npm link adminforth" |
| 7 | + "rollout": "tsc && rsync -av --exclude 'node_modules' custom dist/", |
| 8 | + "prepare": "npm link adminforth" |
7 | 9 | }, |
8 | | - "author": "", |
9 | | - "license": "ISC", |
10 | | - "description": "" |
| 10 | + "repository": { |
| 11 | + "type": "git", |
| 12 | + "url": "https://github.com/devforth/adminforth-sso-auth" |
| 13 | + }, |
| 14 | + "keywords": ["adminforth", "sso", "auth", "oauth", "google auth", "github auth"], |
| 15 | + "author": "devforth", |
| 16 | + "license": "MIT", |
| 17 | + "description": "AdminForth SSO Auth Plugin", |
| 18 | + "devDependencies": { |
| 19 | + "@types/node": "^22.10.7", |
| 20 | + "semantic-release": "^24.2.1", |
| 21 | + "semantic-release-slack-bot": "^4.0.2", |
| 22 | + "typescript": "^5.7.3" |
| 23 | + }, |
| 24 | + "release": { |
| 25 | + "plugins": [ |
| 26 | + "@semantic-release/commit-analyzer", |
| 27 | + "@semantic-release/release-notes-generator", |
| 28 | + "@semantic-release/npm", |
| 29 | + "@semantic-release/github", |
| 30 | + [ |
| 31 | + "semantic-release-slack-bot", |
| 32 | + { |
| 33 | + "notifyOnSuccess": true, |
| 34 | + "notifyOnFail": true, |
| 35 | + "slackIcon": ":package:", |
| 36 | + "markdownReleaseNotes": true |
| 37 | + } |
| 38 | + ] |
| 39 | + ], |
| 40 | + "branches": [ |
| 41 | + "main", |
| 42 | + { |
| 43 | + "name": "next", |
| 44 | + "prerelease": true |
| 45 | + } |
| 46 | + ] |
| 47 | + } |
11 | 48 | } |
0 commit comments