-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.71 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
{
"name": "demo-chess",
"version": "1.0.0",
"type": "module",
"main": "./dist-lib/questions.cjs.js",
"module": "./dist-lib/questions.mjs",
"types": "./dist-lib/index.d.ts",
"exports": {
".": {
"types": "./dist-lib/index.d.ts",
"import": "./dist-lib/questions.mjs",
"require": "./dist-lib/questions.cjs.js"
},
"./questions": {
"types": "./dist-lib/index.d.ts",
"import": "./dist-lib/questions.mjs",
"require": "./dist-lib/questions.cjs.js"
},
"./style": "./dist-lib/assets/index.css"
},
"files": [
"dist/",
"dist-lib/"
],
"scripts": {
"dev": "vite",
"build": "npm run build:webapp && npm run build:lib",
"build:webapp": "vite build",
"build:lib": "BUILD_MODE=library vite build",
"preview": "vite preview",
"test:e2e": "cypress open",
"test:e2e:headless": "cypress run",
"ci:e2e": "vite dev & wait-on http://localhost:6173 && cypress run",
"studio": "skuilder studio"
},
"dependencies": {
"@mdi/font": "^7.3.67",
"@vue-skuilder/common": "^0.1.11",
"@vue-skuilder/common-ui": "^0.1.11",
"@vue-skuilder/courseware": "^0.1.11",
"@vue-skuilder/db": "^0.1.11",
"events": "^3.3.0",
"pinia": "^2.3.0",
"vue": "^3.5.13",
"vue-router": "^4.2.0",
"vuetify": "^3.7.0"
},
"devDependencies": {
"@types/cypress": "1.1.6",
"@types/events": "^3",
"@vitejs/plugin-vue": "^5.2.1",
"cypress": "14.1.0",
"typescript": "^5.7.2",
"vite": "^6.0.9",
"vite-plugin-dts": "^4.3.0",
"vue-tsc": "^1.8.0",
"wait-on": "8.0.2",
"terser": "^5.39.0",
"@vue-skuilder/cli": "^0.1.11"
},
"stableVersion": "0.1.11",
"description": "Skuilder course application: demo-chess"
}