-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.39 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
{
"name": "osra",
"version": "0.1.1",
"description": "Easy communication between workers",
"files": [
"build"
],
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "vite build && tsc",
"build-watch": "vite build --watch",
"build-test": "vite build --config vite.test.config.ts",
"build-test-watch": "vite build --config vite.test.config.ts --watch",
"dev": "concurrently \"npm run build-watch\" \"npm run build-test-watch\" \"npm run test-watch\"",
"dev2": "concurrently \"npm run build-watch\" \"npm run build-test-watch\" \"npm run test-watch-headful\"",
"test": "npx playwright test",
"test-watch": "set PWTEST_WATCH=1 & npx playwright test",
"test-watch-headful": "npx playwright test --ui"
},
"repository": {
"type": "git",
"url": "git https://github.com/Banou26/osra.git"
},
"author": "Banou26",
"license": "MIT",
"bugs": {
"url": "https://github.com/Banou26/osra/issues"
},
"homepage": "https://github.com/Banou26/osra#readme",
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"concurrently": "^9.1.0",
"i": "^0.3.7",
"npm": "^11.0.0",
"playwright": "^1.49.1",
"typescript": "^5.7.2",
"vite": "^6.0.4"
},
"dependencies": {
"uuid": "^11.0.3"
}
}