-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 KB
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
56
57
58
59
60
61
62
63
64
65
{
"name": "grid-plan",
"version": "3.1.0",
"private": false,
"type": "module",
"description": "A Vue3 dynamic 2d grid component ideal to view and arrange elements on a room, datacenter or rack blueprint.",
"keywords": [
"grid",
"vue",
"2d grid",
"3d",
"plan",
"blueprint",
"room",
"datacenter",
"rack",
"component"
],
"author": "Alec Lloyd Probert",
"repository": {
"type": "git",
"url": "git+https://github.com/graphieros/grid-plan.git"
},
"homepage": "https://grid-plan.graphieros.com/",
"license": "MIT",
"files": [
"dist"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/grid-plan.d.ts",
"import": "./dist/grid-plan.js",
"default": "./dist/grid-plan.js"
}
},
"module": "./dist/grid-plan.js",
"types": "./dist/types/grid-plan.d.ts",
"scripts": {
"clean": "node cleanup.cjs",
"dev": "vite",
"build": "npm run clean && vite build --mode production && node copy-types.cjs",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.1",
"@vue/test-utils": "^2.4.6",
"cypress": "^13.12.0",
"jsdom": "^24.1.0",
"start-server-and-test": "^2.0.4",
"vite": "^7.1.9",
"vitest": "^3.0.5",
"vue": "^3.5.22"
},
"peerDependencies": {
"vue": "^3.3.0",
"three": "^0.173.0"
},
"engines": {
"node": ">=18.0.0"
}
}