-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "@quansync/fs",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.32.1",
"description": "Filesystem utilities for Quansync",
"author": "Kevin Deng <sxzz@sxzz.moe>",
"license": "MIT",
"funding": "https://github.com/sponsors/sxzz",
"homepage": "https://github.com/quansync-dev/fs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/quansync-dev/fs.git"
},
"bugs": {
"url": "https://github.com/quansync-dev/fs/issues"
},
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsgo --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"quansync": "^1.0.0"
},
"devDependencies": {
"@sxzz/eslint-config": "^7.8.3",
"@sxzz/prettier-config": "^2.3.1",
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260313.1",
"bumpp": "^10.4.1",
"eslint": "^10.0.3",
"prettier": "^3.8.1",
"tsdown": "^0.21.2",
"tsdown-preset-sxzz": "^0.4.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"prettier": "@sxzz/prettier-config"
}