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
|
{
"name": "spectre",
"version": "0.0.1",
"files": [
"dist/"
],
"type": "module",
"exports": {
".": "./spectre.js"
},
"main": "spectre.js",
"types": "./dist/spectre.d.ts",
"description": "JS implementation of Spectre",
"scripts": {
"test": "vitest --run",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"build:tsc": "tsc -p tsconfig.build.json",
"build:esbuild": "esbuild --target=es2022 --bundle --minify --outfile=spectre.js --global-name=spectre spectre",
"build": "npm run build:tsc && npm run build:esbuild"
},
"repository": {
"type": "git",
"url": "git+https://git.jolheiser.com/js-spectre.git"
},
"keywords": [
"spectre",
"masterpassword"
],
"author": "John Olheiser <spectre@jolheiser.com> (https://jolheiser.com)",
"license": "GPL-3.0-only",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/node": "^22.13.1",
"@xmldom/xmldom": "^0.9.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.5"
},
"dependencies": {
"@noble/hashes": "^1.7.1"
}
}
|