forked from oframe/ogl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "ogl-extend",
"version": "0.1.6-1a",
"description": "WebGL Library based on Ogl",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"sideEffects": false,
"directories": {
"example": "examples"
},
"scripts": {
"prebuild": "rimraf ./dist && rimraf ./types",
"build": "tsc",
"preversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://exponenta@github.com/ogl.git"
},
"contributors": [
{
"name": "Nathan Gordon",
"email": "gordonnl@gmail.com",
"url": "https://twitter.com/gordonnl"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/exponenta/ogl/issues"
},
"homepage": "https://github.com/exponenta/ogl#readme",
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"printWidth": 120,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^4.7.3"
},
"dependencies": {}
}