-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.07 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
{
"name": "rslog",
"version": "1.2.3",
"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",
"reset": "rimraf ./**/node_modules",
"test": "vitest",
"bump": "npx bumpp"
},
"engines": {
"node": ">=14.17.6"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/rspack-contrib/rslog.git"
},
"devDependencies": {
"@rslib/core": "^0.0.16",
"@types/node": "~16.11.7",
"prettier": "~2.8.1",
"rimraf": "~3.0.2",
"strip-ansi": "^7.1.0",
"supports-color": "^9.4.0",
"typescript": "~5.0.4",
"vitest": "^2.0.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
}
}