-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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": "@ladunjexa/matrixlab.ts",
"description": "A TypeScript matrix math library",
"version": "1.0.5",
"author": "Liron Abutbul (ladunjexa) <[email protected]>",
"license": "MIT",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./@types/index.d.ts",
"homepage": "https://ladunjexa.github.io/matrixlab.ts/",
"repository": "https://github.com/ladunjexa/matrixlab.ts",
"bugs": {
"url": "https://github.com/ladunjexa/matrixlab.ts/issues"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"doc": "npx typedoc src/lib/index.ts"
},
"devDependencies": {
"@types/node": "^20.3.1",
"typedoc": "^0.24.8",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.32.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}