-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
{
"name": "@wowserhq/scene",
"version": "0.32.0",
"description": "Three.js rendering classes for World of Warcraft model formats",
"author": "Wowser Contributors",
"repository": "github:wowserhq/scene",
"license": "MIT",
"type": "module",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run test && npm run build:esm && npm run build:types",
"build:esm": "tsc --outDir ./dist/esm",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir ./dist/types",
"clean": "node ./script/clean.mjs",
"format": "prettier ./src/**/* --write",
"lint": "eslint --ignore-path .gitignore",
"lint:commit": "commitlint --edit",
"prepublishOnly": "npm run build",
"test": "npm run lint && vitest run --coverage",
"prepare": "husky install"
},
"keywords": [
"wowser",
"wow",
"warcraft",
"three",
"three.js"
],
"dependencies": {
"@tweenjs/tween.js": "^23.1.1",
"@wowserhq/format": "^0.25.0"
},
"peerDependencies": {
"three": "^0.161.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.6.1",
"@types/node": "^20.11.17",
"@types/three": "^0.161.2",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitest/browser": "^1.2.2",
"@vitest/coverage-istanbul": "^1.2.2",
"@vitest/ui": "^1.2.2",
"commitlint": "^18.6.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"fs-extra": "^11.2.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.2.2",
"webdriverio": "^8.31.1"
}
}