-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 790 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 790 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
{
"name": "mss-aframe-kit",
"version": "2.2.0",
"description": "A collection of extra A-Frame components built for my projects.",
"main": "dist/mss-aframe-kit.js",
"module": "dist/mss-aframe-kit.js",
"scripts": {
"dev": "vite",
"watch": "vite build --watch",
"build": "vite build",
"build:min": "cross-env BUILD_MINIFY=true vite build",
"build:unmin": "cross-env BUILD_MINIFY=false vite build",
"preview": "vite preview"
},
"keywords": [
"aframe",
"a-frame",
"components",
"kit",
"mss"
],
"author": "Ben Moran",
"license": "MIT",
"devDependencies": {
"vite": "^6.0.0",
"vite-plugin-banner": "^0.8.0",
"cross-env": "^7.0.0"
}
}