@impulsedev/chameleon 1.1.0
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/LICENSE +21 -0
- package/README.md +23 -0
- package/dist/index.d.ts +2797 -0
- package/dist/index.js +3814 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@impulsedev/chameleon",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "highly optimized, memory-efficient, and fully type-safe Discord API library",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "vitest",
|
|
9
|
+
"docs": "typedoc",
|
|
10
|
+
"lint": "eslint src example",
|
|
11
|
+
"lint:fix": "eslint src example --fix",
|
|
12
|
+
"prepare": "husky",
|
|
13
|
+
"typecheck": "tsc --noEmit",
|
|
14
|
+
"build": "npm run typecheck && tsup src/index.ts --format esm --dts --clean"
|
|
15
|
+
},
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"api",
|
|
24
|
+
"chameleon",
|
|
25
|
+
"discord",
|
|
26
|
+
"library",
|
|
27
|
+
"typescript"
|
|
28
|
+
],
|
|
29
|
+
"author": "impulsedoes",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"type": "module",
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@eslint/js": "^10.0.1",
|
|
34
|
+
"@types/node": "^25.9.1",
|
|
35
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
36
|
+
"eslint": "^10.4.0",
|
|
37
|
+
"husky": "^9.1.7",
|
|
38
|
+
"lint-staged": "^17.0.5",
|
|
39
|
+
"tsup": "^8.5.1",
|
|
40
|
+
"tsx": "^4.22.3",
|
|
41
|
+
"typedoc": "^0.28.19",
|
|
42
|
+
"typescript": "^6.0.3",
|
|
43
|
+
"typescript-eslint": "^8.59.4",
|
|
44
|
+
"vitest": "^4.1.7"
|
|
45
|
+
},
|
|
46
|
+
"lint-staged": {
|
|
47
|
+
"*.ts": "eslint --fix"
|
|
48
|
+
}
|
|
49
|
+
}
|