-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "fignumbers",
"version": "0.7.0",
"description": "A comprehensive TypeScript library for generating figurate numbers across multiple dimensions",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"test": "vitest run",
"dev": "vitest",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run test"
},
"keywords": [
"figurate-numbers",
"generators",
"infinite-sequences",
"number-theory",
"mathematics-library"
],
"author": "Edgar Armando Delgado Vega",
"homepage": "https://github.com/edelveart/fignumbers",
"repository": {
"type": "git",
"url": "git+https://github.com/edelveart/fignumbers.git"
},
"bugs": {
"url": "https://github.com/edelveart/fignumbers/issues"
},
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "0.17.0",
"prettier": "3.4.1",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vitest": "2.1.6"
}
}