-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.26 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.26 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
{
"name": "@augustinmauroy/vec3",
"description": "A small and efficient JavaScript library for 3D vector math. It provides a simple API for creating, manipulating, and performing operations on 3D vectors.",
"version": "1.1.0",
"type": "module",
"author": "Augustin Mauroy",
"license": "MIT",
"main": "dist/mod.js",
"files": ["README.md", "LICENSE", "dist"],
"scripts": {
"biome:format:fix": "biome format --fix ./",
"biome:format": "biome format ./",
"biome:lint:fix": "biome lint --fix ./",
"biome:lint": "biome lint ./",
"biome:ci": "biome ci ./",
"build": "tsc",
"pre-commit": "node --run biome:lint:fix; node --run biome:format:fix",
"test": "node --test tests/**/*.test.ts",
"test:coverage": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=./coverage.lcov --test-reporter=spec --test-reporter-destination=stdout --test-coverage-include='src/**/*' --test-coverage-exclude='**/*.test.ts' './**/*.test.ts'",
"types:check": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.3",
"bench-node": "^0.6.0",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AugustinMauroy/vec3.git"
}
}