-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.56 KB
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
{
"name": "@weebforge/math",
"version": "1.0.1",
"publishConfig": {
"access": "public"
},
"description": "Math utilities for ForgeScript — clean, fast, and expressive.",
"keywords": [
"ForgeMath",
"math",
"weebforge",
"weeb",
"calculus",
"expressions",
"utilities",
"arithmetic",
"calculation",
"forge",
"forgescript",
"tryforge"
],
"homepage": "https://github.com/weebforge/ForgeMath#readme",
"bugs": {
"url": "https://github.com/weebforge/ForgeMath/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weebforge/ForgeMath.git"
},
"license": "GPL-3.0-or-later",
"author": "lezii",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "tsc",
"build": "tsc -p tsconfig.json",
"docgen": "npm run eslint && npm run build && typedoc ./src --plugin typedoc-rhineai-theme --out ./docs && node dist/docgen",
"eslint": "eslint ./src/**/* --fix && prettier src --write",
"commit": "npm run docgen && node dist/@build/commit",
"test": "npm run build && node dist/__scripts__/index"
},
"devDependencies": {
"@tryforge/forgescript": "github:tryforge/ForgeScript#dev",
"@types/node": "^25.0.9",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.0",
"typedoc": "^0.28.16",
"typedoc-rhineai-theme": "^1.2.0",
"typescript": "^5.9.3"
}
}