-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.9 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
{
"name": "@feldhaus/vector",
"version": "1.1.2",
"description": "A simple vector utility library",
"type": "module",
"main": "dist/index.cjs.js",
"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.js"
},
"browser": {
"module": "./dist/index.esm.min.js",
"main": "./dist/index.umd.min.js"
},
"scripts": {
"lint": "eslint src test --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint src test --ext .ts,.tsx,.js,.jsx --fix",
"test": "vitest",
"prepublishOnly": "npm run test",
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"prepare": "npm run build",
"release:major": "npm version major && git push --tags",
"release:minor": "npm version minor && git push --tags",
"release:patch": "npm version patch && git push --tags"
},
"keywords": [
"vector",
"unity",
"2d",
"magnitude",
"fromAngle",
"angleBetween",
"distanceBetween",
"normalize",
"dot",
"cross",
"lerp"
],
"author": "Maicon Feldhaus",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/feldhaus/vector.git"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"rimraf": "^6.0.1",
"rollup": "^4.34.8",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
},
"dependencies": {
"@feldhaus/math": "^1.0.9"
}
}