-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
76 lines (76 loc) · 2.23 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": "@masatomakino/threejs-shader-materials",
"version": "0.10.1",
"type": "module",
"exports": {
".": {
"default": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
}
}
},
"types": "./esm/index.d.ts",
"files": [
"esm"
],
"description": "Collection of shader materials for three.js",
"repository": {
"type": "git",
"url": "git+https://[email protected]/MasatoMakino/threejs-shader-materials.git"
},
"author": "MasatoMakino <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@masatomakino/raf-ticker": "0.5.3 - 0.6.x",
"three": "0.168.0 - 0.168.x"
},
"devDependencies": {
"@masatomakino/gulptask-demo-page": "^0.8.3",
"@masatomakino/release-helper": "^0.1.6",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/three": "^0.172.0",
"@vitest/browser": "*",
"@vitest/coverage-istanbul": "^3.0.2",
"browser-sync": "^3.0.2",
"husky": "^9.1.5",
"lil-gui": "^0.20.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"three": "^0.172.0",
"typedoc": "^0.27.0",
"typescript": "^5.5.4",
"webdriverio": "^9.0.6"
},
"scripts": {
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage --run",
"coverage:watch": "npx browser-sync ./coverage/lcov-report -w",
"start:dev": "npm run server & npm run watch:tsc & npm run watch:demo",
"build": "npm run buildTS && npm run demo && npm run typedocs",
"demo": "npx @masatomakino/gulptask-demo-page",
"buildTS": "tsc",
"typedocs": "npx typedoc --out ./docs/api src/index.ts",
"server": "npx browser-sync ./docs/demo -w",
"watch:demo": "npm run demo -- -W",
"watch:tsc": "tsc -W",
"prepare": "husky",
"preversion": "npx @masatomakino/release-helper preversion",
"postversion": "npx @masatomakino/release-helper postversion"
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
},
"main": "index.js",
"directories": {
"doc": "docs"
},
"keywords": [
"three.js"
],
"bugs": {
"url": "https://github.com/MasatoMakino/threejs-shader-materials/issues"
},
"homepage": "https://github.com/MasatoMakino/threejs-shader-materials#readme"
}