forked from matthiasferch/tsm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 892 Bytes
/
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
{
"name": "ts-matrix",
"version": "1.3.2",
"description": "A Vector and Matrix math utility library.",
"author": "Florent Catiau-Tristant",
"main": "./dist/ts-matrix.umd.js",
"module": "./dist/ts-matrix.mjs",
"homepage": "https://github.com/Kapcash/ts-matrix#readme",
"bugs": {
"url": "https://github.com/Kapcash/ts-matrix/issues"
},
"typings": "lib/ts-matrix.d.ts",
"scripts": {
"lint": "eslint --fix src/*.ts",
"build": "tsc --project tsconfig.build.json && vite build",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"files:": [
"src",
"dist",
"lib"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitest/coverage-c8": "^0.24.3",
"eslint": "^8.25.0",
"typescript": "^4.8.4",
"vite": "^3.1.8",
"vitest": "^0.24.3"
}
}