-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.51 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
{
"type": "module",
"name": "@evilkiwi/quadtree",
"version": "2.0.0",
"sideEffects": false,
"packageManager": "pnpm@10.12.4",
"description": "A fast and efficient TypeScript Quadtree",
"files": [
"dist",
"COPYING"
],
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs",
"default": "./dist/index.esm.js"
}
},
"license": "GPL-3.0-only",
"author": {
"name": "Evil Kiwi Limited",
"url": "https://evil.kiwi",
"email": "support@evil.kiwi"
},
"homepage": "https://github.com/evilkiwi/quadtree",
"bugs": {
"url": "https://github.com/evilkiwi/quadtree/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilkiwi/quadtree.git"
},
"keywords": [
"typescript",
"physics",
"tree"
],
"scripts": {
"build": "rollup -c",
"commit": "better-commits",
"lint": "biome check --error-on-warnings",
"prepublishOnly": "pnpm build",
"typecheck": "tsc --noEmit --incremental"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"better-commits": "^1.17.1",
"rollup": "^4.44.2",
"rollup-plugin-dts": "^6.2.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}