forked from DerYeger/yeger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.23 KB
/
package.json
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
{
"name": "vecti",
"type": "module",
"version": "3.0.8",
"description": "A tiny TypeScript library for 2D vector math.",
"author": {
"name": "Jan Müller",
"url": "https://github.com/DerYeger"
},
"license": "MIT",
"homepage": "https://vecti.yeger.eu",
"repository": {
"type": "git",
"url": "git+https://github.com/DerYeger/yeger.git",
"directory": "packages/vecti"
},
"bugs": {
"url": "https://github.com/DerYeger/yeger/issues"
},
"keywords": [
"vector",
"math",
"2d",
"typescript"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"types": "dist/types/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"check:tsc": "tsc",
"check:publish": "publint run --strict",
"dev": "vite build --watch",
"lint": "yeger-lint",
"test": "vitest"
},
"devDependencies": {
"@types/node": "20.11.28",
"@vue/component-compiler-utils": "3.3.0",
"@yeger/tsconfig": "workspace:*",
"typescript": "5.4.2",
"vite": "5.1.7",
"vite-plugin-lib": "workspace:*"
},
"publishConfig": {
"access": "public"
}
}