-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "vite-plugin-cds",
"version": "0.3.4",
"description": "Vite plugin for @sap/cds",
"repository": {
"type": "git",
"url": "https://github.com/Akatuoro/vite-plugin-cds"
},
"main": "index.js",
"keywords": [
"vite",
"plugin",
"cap",
"cds"
],
"files": [
"cap",
"cds",
"node",
"cds-plugin.js",
"index.js"
],
"type": "module",
"scripts": {
"test": "node --test ./**/*.test.js",
"test:features": "playwright test -c test/cap-plugin-features",
"test:features:build": "playwright test -c test/cap-plugin-features/build",
"test:sample:cap": "playwright test -c test/cap-plugin",
"test:sample:cds": "playwright test -c test/cds-plugin",
"test:vite7": "playwright test -c test/cap-plugin-features-vite7",
"test:all": "for d in test/* test/**/build; do [ -d \"$d\" ] && playwright test --pass-with-no-tests -c \"$d\"; done"
},
"peerDependencies": {
"@sap/cds": ">=9"
},
"devDependencies": {
"@playwright/test": "^1",
"@sqlite.org/sqlite-wasm": "latest",
"vite": "^8"
},
"workspaces": [
".",
"test/*"
],
"license": "MIT",
"author": "Johannes Vogt <johannes@vogt.codes>",
"homepage": "https://github.com/Akatuoro/vite-plugin-cds"
}