-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 988 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 988 Bytes
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
{
"name": "rslog",
"version": "1.2.4",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "rslib build",
"preview": "bun run ./preview.ts",
"build": "rslib build",
"dev": "rslib build --watch",
"test": "vitest",
"bump": "npx bumpp"
},
"packageManager": "pnpm@10.12.1",
"repository": {
"type": "git",
"url": "https://github.com/rspack-contrib/rslog.git"
},
"devDependencies": {
"@rslib/core": "^0.9.2",
"@types/node": "^22.15.31",
"prettier": "~3.5.3",
"strip-ansi": "^7.1.0",
"supports-color": "^9.4.0",
"typescript": "~5.8.3",
"vitest": "^2.1.8"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
}
}