-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "thumbdrive",
"version": "0.3.0",
"description": "An OPFS wrapper offering sync access and multi-tab support",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"repository": "gadget-inc/thumbdrive",
"author": "Gadget Software Inc.",
"license": "MIT",
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "prettier --check \"{spec,src}/**/*.{js,ts}\"",
"lint:fix": "prettier --write --check \"{spec,src}/**/*.{js,ts}\"",
"build": "rm -rf dist && tsc",
"watch": "rm -rf dist && tsc --watch --preserveWatchOutput",
"prepublishOnly": "pnpm run build",
"prerelease": "gitpkg publish",
"clean": "rm -rf *.0x *-v8.log",
"x": "tsx",
"dev": "vite",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@gadgetinc/prettier-config": "^0.4.0",
"@playwright/test": "^1.48.2",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.20",
"@types/node": "^24.0.4",
"@types/path-browserify": "^1.0.3",
"@types/yargs": "^17.0.33",
"@vitest/web-worker": "^4.0.3",
"execa": "^5.1.1",
"fs-extra": "^11.3.2",
"lodash": "^4.17.21",
"opfs-mock": "^2.4.0",
"path-browserify": "^1.0.1",
"playwright": "1.54.1",
"prettier": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.8.3",
"vite": "^7.1.12",
"vitest": "^4.0.3",
"vscode-languageserver": "^9.0.1",
"yargs": "^17.7.2"
},
"dependencies": {
"memfs": "^4.49.0",
"vscode-jsonrpc": "^8.2.1"
},
"pnpm": {
"overrides": {
"playwright": "1.54.1"
}
},
"files": [
"dist",
"src",
"README.md"
],
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}