forked from oframe/ogl
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "ogl",
"version": "0.2.1",
"description": "WebGL Library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"ts:main": "dist/index.d.ts",
"sideEffects": false,
"directories": {
"example": "examples"
},
"scripts": {
"build": "webpack --config webpack.dev.js",
"watch": "webpack --config webpack.dev.js --watch",
"prepare": "npm run build",
"publish-git": "npm install && publish-to-git --force"
},
"repository": {
"type": "git",
"url": "git+https://gordonnl@github.com/oframe/ogl.git"
},
"keywords": [
"webgl",
"ogl"
],
"author": {
"name": "Nathan Gordon",
"email": "gordonnl@gmail.com",
"url": "https://twitter.com/gordonnl"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/oframe/ogl/issues"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"copy-webpack-plugin": "^8.0.0",
"dts-bundle-webpack": "^1.0.2",
"publish-to-git": "^1.1.9",
"raw-loader": "^4.0.2",
"source-map-loader": "^2.0.1",
"ts-loader": "^8.0.17",
"typescript": "^4.2.3",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"homepage": "https://github.com/oframe/ogl#readme",
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"printWidth": 150,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false
}
}