-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·59 lines (59 loc) · 1.39 KB
/
package.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.39 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
{
"name": "volumetric",
"version": "1.0.11",
"repository": {
"type": "git",
"url": "git://github.com/AtlasFoundation/Volumetric.git"
},
"exports": {
"./player": {
"import": "./dist/player.js"
},
"./worker": {
"default": "./dist/worker.js"
},
".": {}
},
"files": [
"dist",
"player.d.ts",
"worker.d.ts"
],
"npmClient": "yarn",
"jest": "ts-jest",
"scripts": {
"patch-npm": "npm version patch && npm publish --access public",
"build": "npm run build-player && npm run build-worker",
"build-player": "tsc",
"build-worker": "vite build --config vite.worker.config.ts",
"encode": "babel ./encoder/Encoder.js --out-file corto.js --plugins @babel/plugin-transform-modules-umd",
"format": "prettier --write \"web/*.{ts,tsx}\"",
"format-staged": "lint-staged",
"lint": "prettier --check \"web/*.{ts,tsx}\""
},
"pre-commit": [
"format-staged"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.12",
"@types/three": "0.149.0",
"@ianvs/prettier-plugin-sort-imports": "3.7.1",
"prettier": "2.8.4",
"typescript": "4.9.5"
},
"dependencies": {
"shelljs": "0.8.5",
"vite": "^4.0.0",
"xmlhttprequest": "1.8.0"
},
"peerDependencies": {
"three": ">0.130.0"
}
}