-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.49 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.49 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
{
"name": "@t-ski/clustering-algorithms",
"version": "0.1.0",
"description": "",
"author": "Thassilo Martin Schiepanski",
"homepage": "https://github.com/t-ski/clustering-algorithms#readme",
"keywords": [
"clustering",
"machine-learning"
],
"repository": {
"type": "git",
"url": "git+https://github.com/t-ski/clustering-algorithms.git"
},
"bugs": {
"url": "https://github.com/t-ski/clustering-algorithms/issues"
},
"main": "./build/api.js",
"types": "./types/api.d.ts",
"files": [
"./build/",
"./types/"
],
"scripts": {
"prepare": "npx husky install",
"compile": "npx tsc --project ./tsconfig.debug.json",
"compile:watch": "npm run compile -- --watch",
"build": "rm -rf ./build/ && rm -rf ./types/ && npx tsc --project ./tsconfig.build.json",
"lint": "npx eslint ./src/*.ts",
"lint:fix": "npx eslint --fix ./src/*.ts",
"test": "node ./scripts/min-test.js",
"plots": "node ./scripts/plots.js",
"example": "node ./example/example.js"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@resvg/resvg-js": "^2.6.2",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.8.0"
}
}