-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.05 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": "shaderkit",
"version": "0.2.0",
"description": "Tools and IntelliSense for GLSL and WGSL.",
"keywords": [
"shaders",
"glsl",
"wgsl",
"webgl",
"webgpu",
"compiler",
"parser",
"minifier",
"intellisense"
],
"author": "Cody Bennett (https://github.com/CodyJasonBennett)",
"homepage": "https://github.com/CodyJasonBennett/shaderkit",
"repository": "https://github.com/CodyJasonBennett/shaderkit",
"license": "MIT",
"files": [
"dist/*",
"src/*"
],
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"devDependencies": {
"typescript": "^4.9.5",
"vite": "^4.1.2",
"vitest": "^0.28.5"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "tsc",
"test": "vitest run"
}
}