-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.64 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
{
"displayName": "Anthima Alaab | أنظمة ألعاب",
"name": "anthima",
"version": "1.1.1",
"description": "تطبيق أنظمة الألعاب بلغة جافاسكربت",
"scripts": {
"types": "tsc -p ./tsconfig.json && node ./cli/src/clean.js",
"docs": "npm run types && node ./cli/src/docs.js",
"lint": "eslint . --fix --ignore-path .gitignore",
"format": "prettier . --write --ignore-path .gitignore",
"test": "mocha ./tests/**/*.test.js",
"test:cli": "mocha ./cli/tests/**/*.test.js"
},
"type": "module",
"main": "./src/exports.js",
"types": "./types/exports.d.ts",
"exports": {
".": {
"import": "./src/exports.js",
"default": "./src/exports.js",
"types": "./types/exports.d.ts"
}
},
"files": [
"src/",
"types/",
"LICENSE",
"*.md"
],
"homepage": "https://Anthima-Alaab.github.io/JavaScript",
"repository": {
"type": "git",
"url": "git+https://github.com/Anthima-Alaab/JavaScript.git"
},
"bugs": {
"url": "https://github.com/Anthima-Alaab/JavaScript/issues"
},
"keywords": [
"game",
"gamedev",
"game-dev",
"line",
"point"
],
"author": {
"name": "Assayyaad",
"email": "[email protected]",
"url": "https://links.thealpha.pro"
},
"license": "MIT",
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.1.6",
"@types/node": "*",
"eslint": "*",
"eslint-plugin-jsdoc": "*",
"eslint-plugin-mocha": "^10.3.0",
"mocha": "^10.3.0",
"prettier": "*",
"typedoc": "^0.26.4",
"typedoc-plugin-extras": "^3.1.0",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.5.3"
}
}