@justnixxuu/hello-npm 1.0.7 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/example-package.json +83 -0
- package/package.json +2 -2
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
+
"name": "@discordjs/discord.js",
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"description": "A powerful library for interacting with the Discord API",
|
|
6
|
+
"private": true,
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "turbo run build --concurrency=4",
|
|
9
|
+
"build:affected": "turbo run build --filter=...[origin/main] --concurrency=4",
|
|
10
|
+
"build:apps": "turbo run build:local --filter=...{apps/*} --concurrency=4",
|
|
11
|
+
"build:apps:affected": "turbo run build:local --filter=...{apps/*}[origin/main] --concurrency=4",
|
|
12
|
+
"test": "turbo run test --concurrency=4",
|
|
13
|
+
"test:affected": "turbo run test --filter=...[origin/main] --concurrency=4",
|
|
14
|
+
"lint": "turbo run lint --concurrency=4",
|
|
15
|
+
"lint:affected": "turbo run lint --filter=...[origin/main] --concurrency=4",
|
|
16
|
+
"format": "turbo run format --concurrency=4",
|
|
17
|
+
"format:affected": "turbo run format --filter=...[origin/main] --concurrency=4",
|
|
18
|
+
"fmt": "turbo run format --concurrency=4",
|
|
19
|
+
"fmt:affected": "turbo run format --filter=...[origin/main] --concurrency=4",
|
|
20
|
+
"docs": "turbo run docs --concurrency=4",
|
|
21
|
+
"docs:affected": "turbo run docs --filter=...[origin/main] --concurrency=4",
|
|
22
|
+
"prepare": "is-ci || husky",
|
|
23
|
+
"update": "pnpm --recursive update --interactive",
|
|
24
|
+
"update:latest": "pnpm --recursive update --interactive --latest",
|
|
25
|
+
"create-package": "turbo gen create-package --args",
|
|
26
|
+
"release": "bun ./packages/actions/src/releasePackages/index.ts"
|
|
27
|
+
},
|
|
28
|
+
"type": "module",
|
|
29
|
+
"contributors": [
|
|
30
|
+
"Crawl <icrawltogo@gmail.com>",
|
|
31
|
+
"Amish Shah <amishshah.2k@gmail.com>",
|
|
32
|
+
"Vlad Frangu <me@vladfrangu.dev>",
|
|
33
|
+
"SpaceEEC <spaceeec@yahoo.com>",
|
|
34
|
+
"Aura Román <kyradiscord@gmail.com>"
|
|
35
|
+
],
|
|
36
|
+
"keywords": [
|
|
37
|
+
"discord",
|
|
38
|
+
"api",
|
|
39
|
+
"bot",
|
|
40
|
+
"client",
|
|
41
|
+
"node",
|
|
42
|
+
"discordapp"
|
|
43
|
+
],
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/discordjs/discord.js.git"
|
|
47
|
+
},
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/discordjs/discord.js/issues"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://discord.js.org",
|
|
52
|
+
"funding": "https://github.com/discordjs/discord.js?sponsor",
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@commitlint/cli": "^20.2.0",
|
|
55
|
+
"@commitlint/config-angular": "^20.2.0",
|
|
56
|
+
"@favware/cliff-jumper": "^6.0.0",
|
|
57
|
+
"@favware/npm-deprecate": "^2.0.0",
|
|
58
|
+
"@types/lodash.merge": "^4.6.9",
|
|
59
|
+
"@unocss/eslint-plugin": "^66.5.10",
|
|
60
|
+
"@vitest/coverage-v8": "^4.0.15",
|
|
61
|
+
"conventional-changelog-cli": "^5.0.0",
|
|
62
|
+
"eslint": "^9.39.1",
|
|
63
|
+
"eslint-config-neon": "^0.2.9",
|
|
64
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
65
|
+
"eslint-plugin-react-compiler": "19.1.0-rc.2",
|
|
66
|
+
"husky": "^9.1.7",
|
|
67
|
+
"is-ci": "^4.1.0",
|
|
68
|
+
"lint-staged": "^16.2.7",
|
|
69
|
+
"lodash.merge": "^4.6.2",
|
|
70
|
+
"prettier": "^3.7.4",
|
|
71
|
+
"tsup": "^8.5.1",
|
|
72
|
+
"turbo": "^2.6.3",
|
|
73
|
+
"typescript": "~5.9.3",
|
|
74
|
+
"typescript-eslint": "^8.49.0",
|
|
75
|
+
"unocss": "^66.5.10",
|
|
76
|
+
"vercel": "^49.1.2",
|
|
77
|
+
"vitest": "^4.0.15"
|
|
78
|
+
},
|
|
79
|
+
"engines": {
|
|
80
|
+
"node": ">=22.12.0"
|
|
81
|
+
},
|
|
82
|
+
"packageManager": "pnpm@10.25.0"
|
|
83
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justnixxuu/hello-npm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "A simple example npm package",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -15,6 +15,6 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "https://github.com/justnixxuu/hello-npm.git"
|
|
18
|
+
"url": "git+https://github.com/justnixxuu/hello-npm.git"
|
|
19
19
|
}
|
|
20
20
|
}
|