-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 896 Bytes
/
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
{
"type": "module",
"name": "@epic-web/app-launcher",
"version": "0.2.0",
"description": "Utility for launching your applications on a per-test basis.",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"dev": "npm run build -- --watch",
"test": "vitest",
"build": "tsc -p ./tsconfig.build.json",
"release": "release publish"
},
"files": [
"./src",
"./build"
],
"keywords": [
"launcher",
"app",
"test",
"rsc",
"utility",
"helper"
],
"author": "Artem Zakharchenko <[email protected]>",
"license": "MIT",
"devDependencies": {
"@ossjs/release": "^0.8.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@epic-web/invariant": "^1.0.0",
"@open-draft/deferred-promise": "^2.2.0",
"@types/node": "18"
},
"publishConfig": {
"access": "public"
}
}