-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.93 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
{
"name": "@nyx-discord/monorepo",
"version": "1.0.0",
"description": "The monorepo for the nyx framework.",
"private": true,
"main": "index.js",
"scripts": {
"build:core": "lerna run build --scope=@nyx-discord/core",
"build:framework": "lerna run build --scope=@nyx-discord/framework",
"build:typedoc": "typedoc",
"build:docusaurus": "lerna run build --scope=@nyx-discord/docs",
"start:docusaurus": "lerna run start --scope=@nyx-discord/docs",
"deploy:docusaurus": "lerna run deploy --scope=@nyx-discord/docs",
"serve:docusaurus": "lerna run serve --scope=@nyx-discord/docs",
"test:core": "nx test @nyx-discord/core",
"test:framework": "nx test @nyx-discord/framework",
"ci:version:conventional": "lerna version --yes --no-private --conventional-commits --create-release github --message \"chore(release): version\"",
"ci:version:major": "lerna version major --yes --no-private --conventional-commits --create-release github --message \"chore(release): major version\"",
"ci:version:minor": "lerna version minor --yes --no-private --conventional-commits --create-release github --message \"chore(release): minor version\"",
"ci:version:patch": "lerna version patch --yes --no-private --conventional-commits --create-release github --message \"chore(release): patch version\"",
"ci:publish:github": "lerna publish from-git --yes --registry=https://npm.pkg.github.com",
"ci:publish:npm": "lerna publish from-git --yes",
"prepare": "husky install",
"validate": "pnpm lint",
"prepush": "pnpm validate"
},
"keywords": [],
"author": "Amgelo563",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@mxssfd/typedoc-theme": "1.1.3",
"@nx/jest": "19.4.1",
"@nx/js": "19.4.1",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/jest": "^29.4.0",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"barrelsby": "2.8.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "9.6.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.5.2",
"globals": "^15.8.0",
"husky": "8.0.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"lerna": "8.0.1",
"lint-staged": "14.0.1",
"nx": "19.4.1",
"prettier": "3.0.3",
"rimraf": "5.0.5",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tsc-files": "1.1.4",
"tsup": "7.2.0",
"typedoc": "0.25.13",
"typedoc-plugin-djs-links": "2.1.1",
"typedoc-plugin-extras": "3.0.0",
"typescript": "5.4.5"
},
"dependencies": {
"tslib": "^2.3.0"
},
"packageManager": "[email protected]+sha1.c85a4305534f76d461407b59277b954bac97b5c4"
}