-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.55 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
{
"name": "@lume/three-projected-material",
"description": "A Three.js material that projects a texture onto an object",
"version": "0.4.0",
"type": "module",
"main": "dist/ProjectedMaterial.js",
"homepage": "https://github.com/lume/three-projected-material",
"repository": "[email protected]:lume/three-projected-material.git",
"license": "MIT",
"files": [
"dist/"
],
"scripts": {
"start": "five-server . --open=./examples/",
"build": "tsc",
"clean": "rimraf dist examples/lib/three-projected-material",
"test": "npm run prettier:check && npm run build && echo TODO three-projected-material tests",
"prettier": "prettier . --write",
"prettier:check": "prettier . --check",
"deploy": "gh-pages -d examples",
"release:patch": "npm version --no-workspaces patch -m 'v%s' && npm publish && git push --follow-tags",
"release:minor": "npm version --no-workspaces minor -m 'v%s' && npm publish && git push --follow-tags",
"release:major": "npm version --no-workspaces major -m 'v%s' && npm publish && git push --follow-tags",
"preversion": "npm run build",
"version": "npm run updateversion && npm run build && git add .",
"updateversion": "echo export const version = \"'$npm_package_version'\" > src/version.ts"
},
"peerDependencies": {
"three": ">=0.152.0"
},
"devDependencies": {
"@types/three": ">=0.152.0",
"cpr": "^3.0.1",
"five-server": "^0.3.1",
"gh-pages": "^3.1.0",
"mkdirp": "^3.0.1",
"prettier": "3.0.3",
"rimraf": "^5.0.1",
"serve": "^13.0.2",
"stats.js": "^0.17.0",
"three": ">=0.152.0",
"typescript": "^5.0.0"
}
}