-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 4.2 KB
/
package.json
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@lacrypta/nomad",
"version": "0.0.0",
"description": "The Nomad Virtual Machine reference implementation",
"keywords": [
"NOSTR",
"NOMAD",
"Virtual Machine"
],
"license": "MIT",
"homepage": "https://lacrypta.ar",
"bugs": {
"url": "https://github.com/lacrypta/nomad/issues",
"email": "bugs@lacrypta.ar"
},
"repository": "github:lacrypta/nomad",
"author": {
"name": "La Crypta",
"url": "https://lacrypta.ar",
"email": "info@lacrypta.ar"
},
"contributors": [],
"files": [
"dist/types",
"dist/esm",
"dist/cjs",
"dist/umd"
],
"types": "./dist/types/index.d.ts",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/esm/index.js",
"esnext": "./dist/esm/index.js",
"es2015": "./dist/esm/index.js",
"esm": "./dist/esm/index.js",
"module-browser": "./dist/esm/index.js",
"source": "./dist/esm/index.js",
"unpkg": "./dist/umd/index.min.js",
"jsdelivr": "./dist/umd/index.min.js",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"umd": "./dist/umd/index.js",
"default": "./dist/esm/index.js"
},
"sideEffects": false,
"type": "module",
"scripts": {
"mdlint": "markdownlint . .github -i node_modules -c ./etc/.markdownlint.jsonc",
"mdlint:fix": "pnpm run mdlint --fix",
"lint:ts": "eslint 'src/**/*.{m,c,}ts' 'test/**/*.{m,c,}ts' --config ./etc/eslint.ts.config.mjs --no-error-on-unmatched-pattern",
"lint:js": "eslint 'src/**/*.{m,c,}js' 'test/**/*.{m,c,}js' --config ./etc/eslint.js.config.mjs --no-error-on-unmatched-pattern",
"lint": "pnpm run lint:ts && pnpm run lint:js",
"lint:fix": "pnpm run lint:ts --fix && pnpm run lint:js --fix",
"prettier": "prettier etc src test --config ./etc/.prettierrc.json --no-error-on-unmatched-pattern --check",
"prettier:fix": "pnpm run prettier --write",
"format": "pnpm run prettier:fix && pnpm run lint:fix && pnpm run mdlint:fix",
"build": "pnpm run build:code && pnpm run build:types",
"build:code": "node ./scripts/build.mjs",
"build:types": "tsc --build --verbose ./etc/tsconfig.build.json",
"analyze": "node ./scripts/analyze.mjs",
"doc": "pnpm doc:api && pnpm run doc:internal",
"doc:api": "typedoc --options ./etc/typedoc.api.json",
"doc:internal": "typedoc --options ./etc/typedoc.internal.json",
"clean": "rm -rf dist",
"test": "jest --runInBand --config=./etc/jest.unit.config.cjs",
"test:meta": "jest --runInBand --config=./etc/jest.meta.config.cjs",
"test:regression": "jest --runInBand --config=./etc/jest.regression.config.cjs",
"reset": "pnpm clean && rm -rf node_modules && rm -f pnpm-lock.yaml",
"all": "pnpm reset; pnpm up --latest; pnpm format; pnpm lint; pnpm build; pnpm test; pnpm test:meta; pnpm test:regression; pnpm doc",
"pack:clean": "./etc/pack",
"publish:clean": "./etc/publish"
},
"packageManager": "pnpm@9.2.0",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@lacrypta/nomad": "link:",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@yookue/typedoc-plugin-raw-content": "^0.2.1",
"esbuild": "^0.23.1",
"esbuild-plugin-umd-wrapper": "^3.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-array-func": "^5.0.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-perfectionist": "^3.2.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-tsdoc": "^0.3.0",
"jest": "^29.7.0",
"markdownlint-cli": "^0.41.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"tsx": "^4.17.0",
"typedoc": "^0.26.6",
"typedoc-plugin-keywords": "^1.6.0",
"typedoc-plugin-markdown": "^4.2.5",
"typedoc-plugin-mdn-links": "^3.2.9",
"typedoc-plugin-mermaid": "^1.12.0",
"typedoc-plugin-remove-references": "^0.0.6",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"web-worker": "^1.3.0"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"dependencies": {
"@noble/curves": "^1.5.0",
"@noble/hashes": "^1.4.0"
}
}