-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.92 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
{
"name": "path-serializer",
"version": "0.6.0",
"type": "module",
"description": "path-serializer",
"keywords": ["snapshot", "rstest", "vitest", "jest", "ci", "test"],
"repository": {
"type": "git",
"url": "git+https://github.com/rstackjs/path-serializer.git"
},
"license": "MIT",
"author": "sooniter",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"lint": "biome check --write",
"prepare": "pnpm run build && simple-git-hooks",
"test:watch": "rstest --watch",
"test": "rstest",
"prepublish": "pnpm run build",
"bump": "npx bumpp"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"devDependencies": {
"rsbuild-plugin-publint": "^0.3.4",
"@biomejs/biome": "^1.9.4",
"@microsoft/api-extractor": "^7.48.0",
"@rslib/core": "0.18.6",
"@rstest/adapter-rslib": "0.2.1",
"@rstest/core": "0.9.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.1",
"execa": "9.5.1",
"fs-extra": "11.2.0",
"lodash-es": "^4.17.21",
"nano-staged": "^0.8.0",
"semver": "7.6.3",
"simple-git-hooks": "^2.11.1",
"slash": "5.1.0",
"typescript": "^5.7.2",
"upath": "^2.0.1"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"nano-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json}": [
"biome check --write --no-errors-on-unmatched"
]
}
}