-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.47 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
{
"name": "pointscape",
"version": "2.1.1",
"description": "Points manipulation: distance & angle helpers, collisions, shapes, array & math utilities — 2D coordinate system",
"scripts": {
"build": "npx tsup index.ts --outDir dist --format cjs,esm --dts",
"test": "npx jest",
"prepack": "npm run build",
"publish:dry-run": "npm pack --dry-run"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"keywords": ["2d", "points", "algebra", "canvas", "html-game", "coordinates", "xy", "distance", "area", "perimeter", "collision", "angle", "random"],
"author": "Arman Ghazaryan",
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"tsup": "^8.0.1",
"@babel/preset-env": "^7.23.8",
"babel-jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"homepage": "https://github.com/Arman2409/pointscape#readme",
"bugs": {
"url": "https://github.com/Arman2409/pointscape/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arman2409/pointscape.git"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"type": "module"
}