-
Notifications
You must be signed in to change notification settings - Fork 214
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "ogl",
"version": "1.0.9",
"description": "WebGL Library",
"type": "module",
"main": "./src/index.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./src/*": "./src/*"
},
"sideEffects": false,
"types": "./types/index.d.ts",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://gordonnl@github.com/oframe/ogl.git"
},
"author": {
"name": "Nathan Gordon",
"email": "gordonnl@gmail.com",
"url": "https://twitter.com/gordonnl"
},
"license": "Unlicense",
"bugs": {
"url": "https://github.com/oframe/ogl/issues"
},
"homepage": "https://github.com/oframe/ogl#readme",
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"printWidth": 200,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false
}
}