-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 941 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 941 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": "gputext",
"version": "1.0.0",
"description": "Lightweight engine-agnostic GPU text system (dependency free)",
"main": "./dist/GPUText.js",
"types": "./dist/GPUText.d.ts",
"directories": {
"example": "example"
},
"bin": "./cli.js",
"scripts": {
"dist": "tsc && uglifyjs dist/GPUText.js --compress --mangle -o dist/GPUText.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VALIS-software/GPUText.git"
},
"keywords": [
"webgl",
"text",
"webgl text",
"gpu text",
"text rendering",
"rendering"
],
"author": "George Corney (haxiomic)",
"license": "ISC",
"bugs": {
"url": "https://github.com/VALIS-software/GPUText/issues"
},
"homepage": "https://github.com/VALIS-software/GPUText#readme",
"devDependencies": {
"typescript": "^2.9.1",
"uglify-js": "^3.4.9"
}
}