-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 769 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 769 Bytes
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
{
"name": "affinescript-vite",
"version": "0.1.0",
"description": "Vite plugin for AffineScript — compile and reload .as files in your Vite projects.",
"type": "module",
"main": "./src/index.js",
"module": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"dev": "deno run --allow-all node_modules/vite/bin/vite.js",
"build": "deno run --allow-all node_modules/vite/bin/vite.js build",
"preview": "deno run --allow-all node_modules/vite/bin/vite.js preview"
},
"keywords": [
"vite",
"vite-plugin",
"affinescript",
"wasm",
"compiler"
],
"author": "hyperpolymath",
"license": "AGPL-3.0-or-later",
"dependencies": {
"vite": "^8.0.5"
},
"engines": {
"deno": ">=2.0.0"
}
}