-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.73 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.73 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@quarkworks-inc/avatar-webkit-rendering",
"version": "1.0.4",
"license": "SEE LICENSE IN LICENSE.md",
"description": "Avatar WebKit Rendering",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:Hallway-Inc/AvatarWebKit-Rendering.git"
},
"author": "",
"bugs": {
"url": "https://github.com/Hallway-Inc/AvatarWebKit-Rendering/issues"
},
"homepage": "https://github.com/Hallway-Inc/AvatarWebKit-Rendering",
"scripts": {
"build": "rollup -c",
"start": "rollup -cw",
"test": "jest --passWithNoTests",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0 --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"release": "release-it"
},
"dependencies": {
"@quarkworks-inc/avatar-webkit": "0.11.0-worker.7",
"camera-controls": "^1.36.2",
"three": "^0.138.3"
},
"peerDependencies": {
"@quarkworks-inc/avatar-webkit": "^0.8.0",
"three": "^0.138.3"
},
"devDependencies": {
"@csmith/release-it-calver-plugin": "^2021.12.10",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@types/three": "^0.138.0",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"dotenv": "^16.0.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-webpack-plugin": "^2.5.0",
"jest": "^27.5.1",
"lil-gui": "^0.17.0",
"prettier": "2.1.0",
"release-it": "^14.12.4",
"rollup": "^2.68.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier",
"prettier/@typescript-eslint",
"prettier/react"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"bl": "^1.2.3"
},
"release-it": {
"gitlab": {
"release": false
},
"plugins": {},
"npm": {
"publish": false
}
}
}