This repository has been archived by the owner on Jan 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
96 lines (96 loc) · 3.55 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
{
"name": "pluto-encrypted",
"version": "0.0.0",
"private": "true",
"scripts": {
"lint": "npx eslint packages/*/src/**/*.ts --fix",
"clean-packages": "npx lerna run clean-packages && rm -rf node_modules",
"build": "npx lerna run build --stream --include-dependencies",
"build-and-test": "npm run build && npm run test",
"dev": "lerna watch --include-dependencies -- npm run build",
"dev-test": "lerna watch --include-dependencies -- npm run build-and-test",
"coverage": "npx lerna run --include-dependencies --stream coverage",
"test": "npx lerna run --include-dependencies --stream test",
"docs": "typedoc --options ./typedoc.markdown.cjs ",
"docs-html": "typedoc --options ./typedoc.html.cjs ",
"release": "npx multi-semantic-release --deps.bump=satisfy --deps.release=inherit",
"prepare": "npx husky",
"postinstall": "patch-package"
},
"author": "elribonazo@gmail.com",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@bndynet/typedoc-theme": "^0.0.1",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.4",
"@rollup/plugin-wasm": "^6.1.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.1.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^20.5.0",
"@types/sinon": "^17.0.2",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@vitest/coverage-istanbul": "^1.0.4",
"concurrently": "^8.2.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unused-imports": "^3.0.0",
"fake-indexeddb": "^4.0.2",
"file-loader": "^6.2.0",
"get-port": "5.1.1",
"husky": "^9.0.11",
"istanbul-badges-readme": "^1.8.5",
"jasmine": "^5.1.0",
"mock-aws-s3": "^4.0.2",
"nx": "^19.3.0",
"postcss": "^8.4.31",
"prettier": "^2.4.1",
"rimraf": "^5.0.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-jscc": "^2.0.0",
"rollup-plugin-modify": "^3.0.0",
"rollup-plugin-multi-input": "^1.4.1",
"rollup-plugin-natives": "^0.7.8",
"rollup-plugin-node-externals": "^6.0.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.34.1",
"semantic-release": "^24.0.0",
"semantic-release-monorepo": "^8.0.2",
"sinon": "^16.1.3",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typedoc-plugin-merge-modules": "^5.1.0",
"typedoc-plugin-rename-defaults": "^0.6.5",
"typedoc-plugin-superstruct": "^1.0.0",
"typedoc-theme-hierarchy": "^4.0.0",
"typescript": "^5.1.3",
"vitest": "^1.0.4"
},
"dependencies": {
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"typedoc-plugin-external-module-map": "^2.0.1"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}