-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1 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
{
"name": "@tsuk1ko/fsa-promises",
"version": "1.0.3",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"repository": "github:Tsuk1ko/fsa-promises",
"keywords": [
"node",
"fs",
"fsa",
"opfs",
"promises",
"fs-promises",
"file-system",
"file-system-api",
"file-system-access-api",
"origin-private-file-system"
],
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc && tsc -p tsconfig.esm.json && bun run scripts/postBuild.ts",
"test": "bun test",
"postversion": "tpv"
},
"dependencies": {
"buffer": "^6.0.3"
},
"devDependencies": {
"@tsuk1ko/postversion": "^1.0.2",
"@types/bun": "latest",
"fsa-mock": "^1.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
}
}