-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.93 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@edeckers/lib1password-unofficial",
"version": "1.2.0",
"license": "MPL-2.0",
"description": "Unofficial TypeScript implementation of 1Password's security model based on their white paper",
"author": {
"name": "Ely Deckers",
"email": "raw.blade6685@fastmail.com",
"url": "https://github.com/edeckers"
},
"keywords": [
"1password",
"aes-256",
"cryptography",
"encryption",
"password-manager",
"pbkdf2",
"security"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"main": "dist/index.cjs",
"source": "src/index.ts",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"build:watch": "tsc -p tsconfig.build.json --watch",
"clean": "rm -rf dist",
"dev": "npm run build:watch",
"format": "prettier --check \"src/**/*.{ts,tsx,json,md}\" \"*.{json,md}\"",
"format:fix": "prettier --write \"src/**/*.{ts,tsx,json,md}\" \"*.{json,md}\"",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"preinstall": "node -e \"console.error('\\n\\x1b[41m\\x1b[37m WARNING \\x1b[0m \\x1b[31mDO NOT USE LIB1PASSWORD-UNOFFICIAL IN PRODUCTION\\x1b[0m\\n\\nWhile the 1Password Team greenlit publication of this library, it is not an official product developed or maintained by AgileBits, Inc.\\n')\"",
"prepublishOnly": "npm run clean && npm run build",
"prepack": "npm run build",
"prepare": "husky",
"test": "NODE_OPTIONS=\"--import=tsx/esm\" jasmine",
"type-check": "tsc --noEmit",
"validate": "npm run type-check && npm run lint && npm run format && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edeckers/lib1password-unofficial.git"
},
"bugs": {
"url": "https://github.com/edeckers/lib1password-unofficial/issues"
},
"homepage": "https://passwords.lgtm.it",
"devDependencies": {
"@commitlint/config-conventional": "^20",
"@rollup/plugin-commonjs": "^28",
"@rollup/plugin-node-resolve": "^16",
"@rollup/plugin-strip": "^3",
"@rollup/plugin-terser": "^0",
"@rollup/plugin-typescript": "^12",
"@semantic-release/changelog": "^6",
"@semantic-release/git": "^10",
"@types/jasmine": "^5",
"@types/node": "^24",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"commitlint": "^20",
"eslint": "^9",
"eslint-config-prettier": "^10",
"eslint-plugin-prettier": "^5",
"husky": "^9",
"jasmine": "^5",
"prettier": "^3",
"rollup": "^4",
"rollup-plugin-dts": "^6",
"semantic-release": "^25",
"tsconfig-paths": "^4",
"tslib": "^2",
"tsx": "^4",
"typescript": "^5"
},
"engines": {
"node": ">=22.0.0"
}
}