-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"name": "@re-taro/prelude",
"type": "module",
"version": "0.1.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/*/index.d.ts",
"default": "./dist/*/index.js"
}
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "pnpm run --parallel /^build:.*/",
"build:dts": "tsc --project tsconfig.build.json",
"build:rollup": "rollup -c",
"lint": "pnpm run --parallel /^lint:.*/",
"lint:tsc": "tsc",
"lint:eslint": "eslint --cache --cache-strategy content .",
"test": "vitest",
"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-terser": "0.4.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "22.10.2",
"eslint": "9.17.0",
"eslint-plugin-format": "0.1.3",
"rollup": "4.29.1",
"rollup-plugin-esbuild": "6.1.1",
"semantic-release": "24.2.0",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}