-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.83 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": "wtc-math",
"version": "1.3.0",
"type": "module",
"description": "A math library that provides discrete components for common math operations. Includes vectors, matrices and quaternions.",
"repository": {
"type": "git",
"url": "git+https://github.com/wethegit/wtc-math.git"
},
"keywords": [
"math",
"vector",
"matrix",
"quaternion",
"2d",
"3d"
],
"author": "Liam Egan <liam@wethecollective.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wethegit/wtc-math/issues"
},
"homepage": "https://github.com/wethegit/wtc-math#readme",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.es.js"
}
},
"./color": {
"import": {
"types": "./dist/Color.d.ts",
"default": "./dist/Color.es.js"
}
},
"./plane": {
"import": {
"types": "./dist/Plane.d.ts",
"default": "./dist/Plane.es.js"
}
},
"./ray": {
"import": {
"types": "./dist/Ray.d.ts",
"default": "./dist/Ray.es.js"
}
}
},
"scripts": {
"build": "rm -rf dist && vite build",
"build:site": "npm run document && vite build --config vite.site.config.ts && cp -r documentation dist-site/docs",
"dev": "vite --config vite.site.config.ts",
"preview": "vite preview --config vite.site.config.ts",
"prepare": "husky install; npm run build",
"document": "npx typedoc src/index.ts"
},
"devDependencies": {
"@types/markdown-it": "~14.1.1",
"@types/node": "^25.7.0",
"@types/pug": "^2.0.10",
"husky": "^9.0.11",
"pug": "^3.0.4",
"typedoc": "^0.28.19",
"vite": "^8.0.13",
"vite-plugin-dts": "^5.0.0"
},
"dependencies": {
"typescript": "^6.0.3"
}
}