-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
76 lines (76 loc) · 2.35 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
69
70
71
72
73
74
75
76
{
"name": "threeify",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Typescript 3D Library loosely based on three.js",
"keywords": [
"threeify",
"webgl",
"webgpu",
"3D"
],
"homepage": "http://bhouston.github.com/threeify",
"author": "threeify authors",
"bugs": {
"url": "https://github.com/bhouston/threeify/issues"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/bhouston/threeify.git"
},
"scripts": {
"build": "lerna run build",
"watch": "lerna run watch --parallel --stream",
"clean:node_modules": "node scripts/clean.js --node_modules",
"clean:dist": "node scripts/clean.js --dist",
"clean": "node scripts/clean.js --node_modules --dist",
"format": "prettier \"examples/{src,glsl}/**/*.{ts,json,glsl}\" \"packages/*/{src,glsl}/**/*.{ts,json,glsl}\" --check --write && eslint \"examples/**/*.{ts,json}\" \"packages/*/*.{ts,json}\" --fix",
"docs": "typedoc",
"test": "jest",
"publish": "npm run clean:dist && npm run build && npm test && lerna publish --no-private"
},
"workspaces": [
"tools/*",
"packages/*",
"examples"
],
"dependencies": {
"@gltf-transform/core": "^2.5.1",
"@gltf-transform/extensions": "^2.5.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/offscreencanvas": "^2019.7.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"esbuild": "0.18.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lerna": "^6.6.2",
"prettier": "^2.8.8",
"prettier-plugin-glsl": "^0.0.8",
"semantic-release": "^22.0.8",
"semantic-release-lerna": "^2.0.0",
"ts-jest": "^29.1.0",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "5.1.3",
"vite": "^4.1.4"
}
}