-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.72 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
{
"name": "internxt-crypto",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"build": "tsdown",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "prettier \"{src,tests}/**/*.{ts,tsx}\" --write",
"lint:ts": "eslint \"./{src,tests}/**/*.{ts,tsx}\"",
"lint:fix": "yarn run lint:ts --fix",
"unused": "knip"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@internxt/eslint-config-internxt": "2.0.1",
"@internxt/prettier-config": "https://github.com/internxt/prettier-config.git#v1.0.2",
"@playwright/test": "^1.54.2",
"@types/node": "^25.2.3",
"@vitest/browser-playwright": "^4.0.10",
"@vitest/coverage-istanbul": "^4.0.10",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"knip": "^5.84.0",
"lint-staged": "^16.1.4",
"playwright": "^1.54.1",
"prettier": "^3.6.2",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"vitest": "^4.0.0"
},
"dependencies": {
"@noble/ciphers": "^2.1.1",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@noble/post-quantum": "^0.5.2",
"@scure/bip39": "^2.0.1",
"flexsearch": "^0.8.205",
"hash-wasm": "^4.12.0",
"husky": "^9.1.7",
"idb": "^8.0.3",
"uuid": "^13.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.js"
}
},
"sideEffects": false,
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"prettier --write"
]
}
}