-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.87 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": "intersection",
"version": "0.1.0",
"description": "The RAW geometric intersection algorithms library",
"private": false,
"keywords": [
"intersection",
"geometry",
"line intersection",
"bezier",
"ellipse",
"circle",
"arc",
"computational-geometry",
"svg",
"hit-test",
"typescript"
],
"homepage": "https://raw.org/software/libraries/intersection-js/",
"bugs": "https://github.com/rawify/Intersection.js/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/rawify/Intersection.js.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/rawify"
},
"author": {
"name": "Robert Eisele",
"email": "robert@raw.org",
"url": "https://raw.org/"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"test": "vitest run --coverage",
"test:watch": "vitest",
"check": "npm run typecheck && npm run test",
"prepack": "npm run check && npm run build"
},
"devDependencies": {
"@types/node": "26.4.0",
"@vitest/coverage-v8": "4.1.11",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.1.11"
}
}