-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.01 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.01 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
{
"name": "icon-point",
"version": "2.1.0",
"author": "https://github.com/doubleactii",
"repository": {
"type": "git",
"url": "https://github.com/EvitcaStudio/IconPoint"
},
"main": "dist/esm/icon-point.js",
"module": "dist/esm/icon-point.js",
"types": "dist/icon-point.d.ts",
"files": [
"dist/**/*",
"docs/**/*"
],
"devDependencies": {
"@types/bun": "latest",
"bun": "^1.2.22",
"chalk": "^5.6.2",
"typedoc": "^0.26.0",
"typescript": "^5.6.3"
},
"description": "A class that manages a point that exists inside/outside a virtual rectangle. The point's position inside/outside of the rectangle is maintained when the rectangle is rotated.",
"keywords": ["point", "vylo", "vylocity", "evitcastudio"],
"license": "MIT",
"scripts": {
"build": "bun run bun-build.ts && npx tsc --declaration --emitDeclarationOnly --declarationMap false --sourceMap false",
"build:docs": "typedoc",
"build:dist": "bun run build && bun run build:docs"
},
"type": "module"
}