-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 813 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 813 Bytes
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
{
"name": "multivector-js",
"version": "0.1.2",
"description": "Library for performing geometric algebra computation",
"main": "dist",
"scripts": {
"build:lib": "rimraf ./dist && tsc --build",
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"test": "jest --watchAll",
"tsc": "tsc --watch"
},
"keywords": [],
"author": "Gerard Moreno-Torres Bertran",
"license": "MIT",
"type": "module",
"devDependencies": {
"@jest/globals": "^29.6.2",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/three": "^0.155.1",
"aidos-ui": "^3.0.6",
"jest": "^29.6.2",
"next": "^13.4.19",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"three": "^0.155.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}