-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 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
{
"name": "internxt-crypto",
"version": "1.4.0",
"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.1.0",
"@internxt/prettier-config": "^2.0.1",
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"@vitest/browser-playwright": "^4.1.5",
"@vitest/coverage-istanbul": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.3.0",
"knip": "^6.11.0",
"lint-staged": "^17.0.2",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"@noble/ciphers": "^2.2.0",
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.2.0",
"@noble/post-quantum": "^0.6.1",
"@scure/bip39": "^2.2.0",
"hash-wasm": "^4.12.0",
"husky": "^9.1.7",
"uuid": "^14.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"
]
}
}