-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "vite-plugin-glslify",
"version": "2.1.0",
"description": "A plugin for Vite to compile glslify shader code",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "KusStar",
"license": "MIT",
"scripts": {
"start": "pnpm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"prepublishOnly": "pnpm run build",
"lint": "eslint --ext .ts ./src",
"lint:fix": "pnpm run lint -- --fix",
"release": "pnpm run lint && pnpm run build && release-it"
},
"files": [
"dist"
],
"peerDependencies": {
"vite": "^5.2.9"
},
"dependencies": {
"@rollup/pluginutils": "^4.1.1",
"astring": "^1.7.5",
"estree-walker": "^2.0.2",
"glslify": "^7.1.1",
"magic-string": "^0.25.7"
},
"devDependencies": {
"@kuss/eslint-config-vanilla": "^2.6.1",
"@release-it/conventional-changelog": "^5.1.1",
"eslint": "^8.44.0",
"release-it": "^15.11.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vite": "^5.2.9"
}
}