-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 970 Bytes
/
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
{
"name": "@tsmodule/log",
"license": "MIT",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"version": "3.0.6",
"repository": {
"type": "git",
"url": "https://github.com/tsmodule/log"
},
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./*": "./dist/*/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"dev": "tsmodule dev",
"build": "tsmodule build",
"test": "pnpm build && tsmodule test/index.test.ts",
"prepublishOnly": "pnpm test",
"lint": "eslint src --fix"
},
"devDependencies": {
"@tsmodule/tsmodule": "^44.7.0",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"ansi-styles": "^6.2.1",
"ava": "^5.3.0",
"eslint": "^8.41.0",
"typescript": "^5.0.4"
},
"platform": "node",
"engines": {
"node": ">=14"
}
}