-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
89 lines (89 loc) · 3.24 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
{
"name": "monorepo",
"private": true,
"license": "GPL-3.0-only",
"author": "Piotr Roslaniec <[email protected]>",
"scripts": {
"postinstall": "pnpm build",
"typedoc": "typedoc",
"typedoc:publish": "gh-pages -m \"[ci skip] Update typedoc docs\" -d docs --dotfiles --repo [email protected]:nucypher/taco-web.git",
"format": "prettier --check \"./**/*.ts\" README.md",
"format:fix": "prettier --write \"./**/*.ts\" README.md",
"lint": "pnpm run --parallel --aggregate-output --reporter append-only lint",
"lint:fix": "pnpm --parallel --aggregate-output --reporter append-only lint:fix",
"type-check": "pnpm --parallel --aggregate-output --reporter append-only type-check",
"build": "tsc --build --verbose ./tsconfig.prod.json",
"watch": "tsc --build --verbose --watch ./tsconfig.prod.json",
"test": "pnpm build && vitest run",
"package:check": "pnpm run --parallel --aggregate-output --reporter append-only --filter './packages/**' package-check",
"packages:lint": "pnpm packages:sort --check",
"packages:sort": "sort-package-json \"package.json\" \"examples/*/package.json\" \"packages/*/package.json\"",
"exports:lint": "pnpm run --parallel --aggregate-output --reporter append-only --filter './packages/**' exports:lint",
"fix": "pnpm format:fix && pnpm lint:fix && pnpm packages:sort",
"ci:lint": "run-p lint type-check package:check packages:lint exports:lint",
"check-examples": "pnpm run --parallel --aggregate-output --reporter append-only --filter './examples/**' --filter './demos/**' check"
},
"dependencies": {
"@changesets/cli": "^2.27.5",
"@nucypher/nucypher-core": "^0.14.4",
"ethers": "^5.7.2"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.6.0",
"bundlemon": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typestrict": "^1.0.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"gh-pages": "^6.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.1",
"prettier-plugin-organize-imports": "^3.2.4",
"sort-package-json": "^2.10.0",
"ts-node": "^10.9.2",
"ts-unused-exports": "^10.1.0",
"typedoc": "^0.25.13",
"typedoc-plugin-coverage": "^2.2.0",
"typedoc-plugin-missing-exports": "^2.3.0",
"typedoc-plugin-zod": "^1.1.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"typescript",
"@types/node"
]
},
"overrides": {
"@nucypher/nucypher-core": "^0.14.5",
"glob-parent@<5.1.2": ">=5.1.2",
"node-forge@<1.0.0": ">=1.0.0",
"node-forge@<1.3.0": ">=1.3.0",
"nth-check@<2.0.1": ">=2.0.1"
}
},
"bundlemon": {
"baseDir": ".",
"files": [
{
"path": "**/shared/build/**/*.*"
},
{
"path": "**/taco/build/**/*.*"
},
{
"path": "**/pre/build/**/*.*"
}
]
}
}