-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
71 lines (71 loc) · 2.44 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
66
67
68
69
70
71
{
"name": "@phcode/fs",
"description": "Phoenix virtual file system over filer/ browser fs access/ tauri / phoenix web socket APIs",
"version": "3.0.1",
"keywords": [
"phoenix",
"browser",
"file stsyem",
"fs"
],
"author": "[email protected]",
"homepage": "https://github.com/phcode-dev/phoenix-fs",
"license": "GNU-AGPL3.0",
"scripts": {
"postinstall": "cd ./src-tauri/node-src/ && npm install && cd ../../",
"prepublishOnly": "echo make sure to run `npm run remove-postinstall` before you run npm publish!!!",
"remove-postinstall": "node src-build/remove-postinstall.js",
"tauri": "tauri",
"eslint": "eslint src test",
"eslint:fix": "eslint src test --fix",
"test": "",
"test-browser": "npm run serve & open-cli http://127.0.0.1:8080/test/index.html",
"test-tauri": "tauri dev",
"_copy-node-src-dist": "node src-build/copy-node-src-dist.js",
"_copy-dist-to-test": "node src-build/copy-dist-to-test.js",
"_make-debug-dist": "node src-build/copy-debug-dist.js",
"_build-optimized": "parcel build src/virtualfs.js --detailed-report",
"_build-nonopt": "parcel build src/virtualfs.js --detailed-report --no-optimize",
"build": "npm run eslint && npm run _copy-node-src-dist && npm run _build-nonopt && npm run _make-debug-dist && npm run _build-optimized && npm run _copy-dist-to-test",
"serve": "http-server . -p 8080 -c-1",
"_serve-tauri": "http-server . -p 8081 -c-1",
"bumpPatchVersion": "npm --no-git-tag-version version patch",
"bumpPatchVersionWithGitTag": "npm version patch",
"release": "npm run build && npm run bumpPatchVersionWithGitTag"
},
"repository": {
"type": "git",
"url": "https://github.com/phcode-dev/phoenix-fs"
},
"files": [
"dist/virtualfs.js",
"dist/virtualfs.js.map",
"dist/virtualfs-debug.js",
"dist/virtualfs-debug.js.map",
"dist/phoenix-fs.js"
],
"devDependencies": {
"@tauri-apps/cli": "1.5.7",
"picomatch": "^4.0.1",
"browser-mime": "1.0.1",
"buffer": "^6.0.3",
"eslint": "8.19.0",
"events": "^3.3.0",
"filer": "1.4.1",
"http-server": "14.1.0",
"iconv-lite": "^0.6.3",
"idb": "7.0.1",
"open-cli": "7.0.1",
"parcel": "2.9.3",
"path-browserify": "^1.0.1",
"process": "0.11.10",
"run.env": "1.1.0",
"string_decoder": "^1.3.0",
"workbox-window": "4.2.0"
},
"dependencies": {
"chokidar": "^3.5.3",
"ignore": "^5.2.4",
"ws": "^8.13.0"
}
}