-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "grid-plan",
"version": "1.1.3",
"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",
"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"
],
"exports": {
".": {
"import": {
"types": "./dist/types/grid-plan.d.ts",
"default": "./dist/grid-plan.js"
},
"default": {
"types": "./dist/types/grid-plan.d.cts",
"default": "./dist/grid-plan.cjs"
}
}
},
"main": "./dist/grid-plan.cjs",
"module": "./dist/grid-plan.js",
"types": "./dist/types/grid-plan.d.ts",
"scripts": {
"clean": "node cleanup.cjs",
"dev": "node add-dev-dep.cjs && npm i && 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": {
"vue": "^3.4.29",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/test-utils": "^2.4.6",
"cypress": "^13.12.0",
"jsdom": "^24.1.0",
"start-server-and-test": "^2.0.4",
"vite": "^5.3.1",
"vitest": "^1.6.0"
}
}