-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@re-taro/prelude",
"type": "module",
"version": "1.2.0",
"packageManager": "[email protected]",
"description": "A collection of utility functions for TypeScript",
"author": "Rintaro Itokawa <[email protected]> (https://re-taro.dev)",
"license": "MIT",
"repository": "https://github.com/re-taro/prelude",
"sideEffects": false,
"exports": {
".": {
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./*": {
"default": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"lint": "pnpm run --parallel /^lint:.*/",
"lint:tsc": "tsc",
"lint:eslint": "eslint --cache --cache-strategy content .",
"lint-fix": "pnpm run lint:eslint --fix",
"test": "vitest",
"bench": "vitest bench --run",
"size": "pnpm build && tsx ./scripts/size.ts",
"size:report": "tsx ./scripts/report_size.ts",
"release": "semantic-release"
},
"devDependencies": {
"@re-taro/eslint-config": "5.3.0",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-replace": "6.0.2",
"@rollup/plugin-typescript": "12.1.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "22.13.0",
"eslint": "9.19.0",
"eslint-plugin-format": "0.1.3",
"jotai": "2.11.3",
"markdown-table": "3.0.4",
"picocolors": "1.1.1",
"pkg-pr-new": "0.0.39",
"rimraf": "6.0.1",
"rollup": "4.34.0",
"rollup-plugin-esbuild": "6.1.1",
"semantic-release": "24.2.1",
"tsx": "4.19.2",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}