-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.41 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
63
64
65
{
"name": "git-pwa",
"version": "1.0.23",
"description": "git to use in a progressive web app",
"bin": {
"git-pwa": "git.js",
"git": "git.js"
},
"files": [
"dist",
"src/GitLoader.js",
"README.md",
"src/question.js",
"src/WebContainerPromises.js"
],
"main": "./dist/git-pwa.umd.js",
"module": "./dist/git-pwa.es.js",
"exports": {
".": {
"import": "./dist/git-pwa.es.js",
"require": "./dist/git-pwa.umd.js"
}
},
"scripts": {
"test": "vitest run spec",
"build": "vite build",
"start": "vite dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diy-pwa/git-pwa.git"
},
"keywords": [
"pwa",
"git"
],
"author": "Rich Hildred",
"license": "MIT",
"bugs": {
"url": "https://github.com/diy-pwa/git-pwa/issues"
},
"homepage": "https://diy-pwa.github.io/git-pwa",
"type": "module",
"dependencies": {
"dotenv": "^16.3.1",
"git-pwa": "^1.0.2",
"ini": "^4.1.0",
"isomorphic-git": "^1.23.0",
"ora": "^6.3.0"
},
"devDependencies": {
"@webcontainer/api": "^1.1.8",
"@wp-playground/client": "^0.5.2",
"chai": "^4.3.10",
"express": "^4.18.2",
"marked": "^9.1.2",
"materialize-css": "^1.0.0-rc.2",
"mocha": "^10.2.0",
"mocha-css": "^1.0.1",
"supertest": "^6.3.3",
"vite": "^4.4.5",
"vite-plugin-node-polyfills": "^0.15.0",
"vitest": "^0.29.8"
}
}