-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 810 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 810 Bytes
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
{
"name": "@seregpie/three.text-sprite",
"version": "3.2.0",
"description": "Optimally displays the text as a sprite.",
"keywords": [
"sprite",
"text",
"three"
],
"license": "MIT",
"author": "Sergej Sintschilin <seregpie@gmail.com>",
"files": [
"index.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"repository": "github:SeregPie/THREE.TextSprite",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@seregpie/three.text-texture": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"eslint": "^7.11.0",
"eslint-config-seregpie": "^1.0.1",
"rollup": "^2.31.0",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"three": ">=0.113"
}
}