-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.41 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.41 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
82
83
84
85
86
87
88
89
90
91
{
"name": "segment-intersection",
"version": "0.0.1",
"description": "Fast 2d segment intersection following Schneider and Eberly",
"repository": {
"type": "git",
"url": "git+https://github.com/w8r/segment-intersection.git"
},
"homepage": "https://github.com/w8r/segment-intersection",
"license": "MIT",
"scripts": {
"dev": "vite --config ./playground/vite.config.ts",
"demo": "vite --config ./playground/vite.config.ts build",
"build": "tsc && unbuild",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"test": "vitest --run",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"release": "yarn test && npx standard-version && git push --follow-tags && npm publish --access public",
"benchmark": "node tests/bench.js"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*": "prettier -w -u"
},
"keywords": [
"typescript",
"vite",
"unbuild",
"vitest",
"eslint"
],
"author": "Alex Milevski",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"devDependencies": {
"@babel/types": "7.17.0",
"@types/benchmark": "^2.1.1",
"@types/d3-array": "^3.0.3",
"@types/d3-drag": "^3.0.1",
"@types/d3-selection": "^3.0.3",
"@types/node": "17.0.17",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"benchmark": "^2.1.4",
"c8": "^7.12.0",
"chalk": "^5.0.1",
"d3-array": "^3.2.0",
"d3-drag": "^3.0.0",
"d3-selection": "^3.0.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"exact-segment-intersect": "^2.0.0",
"gh-pages": "^4.0.0",
"husky": "7.0.4",
"jsdom": "19.0.0",
"line-segment-intersect-2d": "^1.0.0",
"lint-staged": "12.3.7",
"path": "0.12.7",
"prettier": "2.6.1",
"segseg": "^1.0.0",
"standard-version": "9.3.2",
"ts-node": "^10.9.1",
"typescript": "4.6.3",
"unbuild": "0.7.2",
"vite": "2.8.6",
"vitest": "0.7.11"
},
"bugs": {
"url": "https://github.com/w8r/segment-intersection/issues"
},
"directories": {
"test": "tests"
}
}