-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 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
59
60
61
62
{
"name": "@ericrovell/vector",
"version": "1.0.0",
"description": "Euclidean vector library written in JavaScript",
"type": "module",
"module": "./dist/index.js",
"scripts": {
"build": "pnpm run clean:build && node esbuild && pnpm build:types && pnpm bundle:dts",
"build:types": "tsc --p ./tsconfig.dts.json",
"bundle:dts": "node ./scripts/bundle-dts.js",
"clean": "rm -rf ./node_modules",
"clean:build": "rm -rf ./dist/*",
"coverage": "pnpm type-coverage",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:types": "tsc --noEmit",
"npm-publish": "pnpm publish --access public --no-git-checks",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"test:watch": "vitest"
},
"repository": "github:EricRovell/vector",
"keywords": [
"calculations",
"geometric vector",
"euclidean vector",
"math",
"number",
"numbers",
"vector",
"vectors"
],
"author": "Eric Rovell",
"types": "./dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitest/coverage-v8": "^1.4.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"tslib": "^2.6.2",
"type-coverage": "^2.27.1",
"typescript": "^5.4.2",
"vite": "^5.2.0",
"vitest": "^1.4.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"homepage": "https://github.com/ericrovell/vector#readme",
"directories": {
"test": "tests"
},
"files": [
"dist"
]
}