forked from willybrauner/mfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 902 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
{
"name": "@cher-ami/mfs",
"version": "0.2.0",
"description": "nodejs fs wrapper",
"author": "Willy Brauner",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"private": false,
"sideEffects": false,
"repository": {
"type": "git",
"url": "git://github.com/cher-ami/mfs.git"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsup",
"build:watch": "tsup --watch --sourcemap",
"test": "vitest",
"test:watch": "vitest --watch",
"pre-publish": "npm run build && npm run test"
},
"dependencies": {
"fs-extra": "^11.1.1"
},
"devDependencies": {
"@types/node": "^20.8.10",
"microbundle": "^0.15.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"tsup": "^7.2.0"
}
}