-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.03 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
63
64
65
66
67
68
{
"name": "@viamrobotics/three",
"version": "0.0.10",
"license": "Apache-2.0",
"type": "module",
"files": [
"dist",
"src"
],
"module": "./dist/ov.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/ov.js"
}
},
"scripts": {
"all": "pnpm lint && pnpm check && pnpm test-run && pnpm build && pnpm build-site",
"start": "vite --host --open --config vite.site.config.ts",
"build": "vite build && tsc --project tsconfig.build.json",
"build-site": "vite build --outDir site --config vite.site.config.ts",
"check": "tsc",
"preview": "vite preview --open --host",
"test": "vitest",
"test-run": "vitest run",
"coverage": "vitest run --coverage",
"lint": "pnpm _eslint && pnpm _prettier --check",
"format": "pnpm _eslint --fix && pnpm _prettier --write",
"_prettier": "prettier \"**/*.{js,cjs,ts,css,json,yml,yaml,md}\"",
"_eslint": "eslint \".*.cjs\" \"**/*.{js,cjs,ts}\""
},
"keywords": [
"three",
"three.js",
"3d",
"orientation vector",
"viam"
],
"devDependencies": {
"@0b5vr/tweakpane-plugin-rotation": "^0.2.0",
"@tweakpane/core": "^2.0.3",
"@tweakpane/plugin-essentials": "^0.2.1",
"@types/three": "^0.162.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@viamrobotics/eslint-config": "^0.4.0",
"@viamrobotics/prettier-config": "^0.3.4",
"@viamrobotics/typescript-config": "^0.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-vitest": "^0.3.22",
"prettier": "^3.2.5",
"three": "^0.162.0",
"three-inspect": "^0.3.4",
"trzy": "^0.3.17",
"tweakpane": "^4.0.3",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1"
},
"peerDependencies": {
"three": "*"
},
"packageManager": "[email protected]+sha256.28ca61ece5a496148b73fabc9afb820f9c3fec4f55f04ce45a2cea0a5219f2e1"
}