-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 2.07 KB
/
package.json
File metadata and controls
executable file
·78 lines (78 loc) · 2.07 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
{
"name": "pointscape",
"version": "2.3.0",
"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 --sourcemap",
"test": "npx jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"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": {
"@babel/preset-env": "^7.23.8",
"@types/jest": "^29.5.11",
"babel-jest": "^29.7.0",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.7.0",
"prettier": "^3.8.3",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.60.0"
},
"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"
}