-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.01 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.01 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
{
"name": "rslog",
"version": "2.1.1",
"repository": {
"type": "git",
"url": "https://github.com/rstackjs/rslog.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib",
"bump": "npx bumpp",
"lint": "rslint",
"dev": "rslib --watch",
"prepare": "rslib",
"preview": "node ./preview/index.ts",
"test": "rstest"
},
"devDependencies": {
"@rslib/core": "^0.20.0",
"@rslint/core": "^0.3.3",
"@rstest/core": "^0.9.4",
"@types/node": "^24.12.0",
"path-serializer": "^0.6.0",
"prettier": "^3.8.1",
"strip-ansi": "^7.2.0",
"supports-color": "^10.2.2",
"typescript": "^6.0.2"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}