forked from grieve/webpack-glsl-loader
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.38 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
51
52
53
54
55
{
"name": "ts-shader-loader",
"version": "2.0.2",
"description": "A webpack loader for glsl shaders - includes support for nested imports. Re-Written in TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint",
"build": "tsc",
"prepublishOnly": "npm run test && npm run lint && npm run build"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"lib/index.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/mentos1386/ts-shader-loader.git"
},
"keywords": [
"glsl",
"shader",
"webgl",
"webpack",
"loader",
"import",
"include",
"typescript"
],
"author": "Tine Jozelj <[email protected]> (https://blog.tjo.space)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mentos1386/ts-shader-loader/issues"
},
"homepage": "https://github.com/mentos1386/ts-shader-loader#readme",
"dependencies": {
"loader-utils": "^3.2.0"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/loader-utils": "^2.0.3",
"@types/memory-fs": "^0.3.3",
"@types/node": "^18.6.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"jest": "^28.1.3",
"memory-fs": "^0.5.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"webpack": "^5.74.0"
}
}