-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.88 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
{
"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",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"lint": "rslint && prettier -c .",
"lint:write": "rslint --fix && prettier -w .",
"prepare": "simple-git-hooks && pnpm run build",
"test:watch": "rstest --watch",
"test": "rstest",
"prepublish": "pnpm run build",
"bump": "npx bumpp"
},
"simple-git-hooks": {
"pre-commit": "pnpm run lint:write"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.58.9",
"@rslib/core": "0.23.0",
"@rslint/core": "^0.6.2",
"@rstest/adapter-rslib": "0.10.6",
"@rstest/core": "0.10.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.1",
"@typescript/native-preview": "7.0.0-dev.20260623.1",
"lodash-es": "^4.17.21",
"prettier": "^3.8.4",
"rsbuild-plugin-publint": "^1.0.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^6.0.3",
"upath": "^2.0.1"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}