linkedin-secret-sauce 0.1.1 → 0.2.0

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/package.json CHANGED
@@ -1,44 +1,59 @@
1
- {
2
- "name": "linkedin-secret-sauce",
3
- "version": "0.1.1",
4
- "description": "Private LinkedIn Sales Navigator client with automatic cookie management",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "files": [
8
- "dist"
9
- ],
10
- "scripts": {
11
- "build": "tsc -p tsconfig.json",
12
- "dev": "tsc -w -p tsconfig.json",
13
- "test": "vitest run",
14
- "prepare": "npm run build",
15
- "prepublishOnly": "npm run build",
16
- "release:patch": "npm version patch && git push --follow-tags",
17
- "release:minor": "npm version minor && git push --follow-tags",
18
- "release:major": "npm version major && git push --follow-tags"
19
- },
20
- "keywords": [
21
- "linkedin",
22
- "sales-navigator",
23
- "client",
24
- "typescript"
25
- ],
26
- "author": "Your Company",
27
- "license": "UNLICENSED",
28
- "engines": {
29
- "node": ">=18.0.0"
30
- },
31
- "repository": {
32
- "type": "git",
33
- "url": "git+https://github.com/enerage/LinkedInSecretSouce.git"
34
- },
35
- "bugs": {
36
- "url": "https://github.com/enerage/LinkedInSecretSouce/issues"
37
- },
38
- "homepage": "https://github.com/enerage/LinkedInSecretSouce#readme",
39
- "devDependencies": {
40
- "@types/node": "^20.11.0",
41
- "typescript": "^5.3.3",
42
- "vitest": "^1.6.0"
43
- }
44
- }
1
+ {
2
+ "name": "linkedin-secret-sauce",
3
+ "version": "0.2.0",
4
+ "description": "Private LinkedIn Sales Navigator client with automatic cookie management",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "publishConfig": {
11
+ "registry": "https://registry.npmjs.org/"
12
+ },
13
+ "scripts": {
14
+ "dev:playground": "pnpm -C apps/playground dev",
15
+ "search": "node scripts/rg-fast.mjs",
16
+ "rg:fast": "node scripts/rg-fast.mjs",
17
+ "build": "tsc -p tsconfig.json",
18
+ "lint": "eslint \"src/**/*.ts\" --max-warnings=0",
19
+ "lint:fix": "eslint \"src/**/*.ts\" --fix",
20
+ "dev": "tsc -w -p tsconfig.json",
21
+ "test": "vitest run",
22
+ "prepare": "husky",
23
+ "prepublishOnly": "npm run build",
24
+ "release:patch": "npm version patch && git push --follow-tags",
25
+ "release:minor": "npm version minor && git push --follow-tags",
26
+ "release:major": "npm version major && git push --follow-tags"
27
+ },
28
+ "keywords": [
29
+ "linkedin",
30
+ "sales-navigator",
31
+ "client",
32
+ "typescript"
33
+ ],
34
+ "author": "Your Company",
35
+ "license": "UNLICENSED",
36
+ "engines": {
37
+ "node": ">=18.0.0"
38
+ },
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/enerage/LinkedInSecretSauce.git"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/enerage/LinkedInSecretSauce/issues"
45
+ },
46
+ "homepage": "https://github.com/enerage/LinkedInSecretSauce#readme",
47
+ "devDependencies": {
48
+ "@types/node": "^20.11.0",
49
+ "@typescript-eslint/eslint-plugin": "^8.9.0",
50
+ "@typescript-eslint/parser": "^8.9.0",
51
+ "eslint": "^9.12.0",
52
+ "typescript": "^5.3.3",
53
+ "vitest": "^1.6.0",
54
+ "@commitlint/cli": "^19.4.0",
55
+ "@commitlint/config-conventional": "^19.4.0",
56
+ "husky": "^9.0.11"
57
+ }
58
+ }
59
+