-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.24 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.24 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@josh-brown/vector",
"author": "Joshua Brown <jbrown1.618@gmail.com>",
"version": "3.1.0",
"description": "A linear algebra library written in TypeScript that focuses on generality, extensibility, and ease of use.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:jbrown1618/vector.git"
},
"bugs": {
"url": "https://github.com/jbrown1618/vector/issues"
},
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"types": "dist/vector.d.ts",
"exports": {
".": {
"types": "./dist/vector.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"coverage": "jest --coverage",
"format": "prettier --write './*.json' 'src/**/*.{ts,json,md}'",
"format:check": "prettier --check './*.json' 'src/**/*.{ts,json,md}'",
"lint": "eslint --fix '**/*.ts'",
"lint:check": "eslint '**/*.ts'",
"docs": "api-extractor run --local && api-documenter markdown --input-folder temp/ --output-folder docs/api/",
"docs:check": "api-extractor run",
"ci": "npm run format:check && npm run lint:check && npm run build && npm run docs:check && npm run coverage",
"prepare": "husky"
},
"dependencies": {},
"devDependencies": {
"@microsoft/api-documenter": "^7.26.9",
"@microsoft/api-extractor": "^7.52.8",
"@semantic-release/github": "^11.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.50",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"semantic-release": "^24.2.5",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"files": [
"docs/*.md",
"dist/vector.d.ts",
"dist/**/*.js",
"dist/**/*.js.map"
],
"release": {
"branches": [
"main"
]
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
}
}